I have a python 2.7 script that accesses a named pipe server through kernel32. Someone tried to reuse the script in python 3.5, with which I am unfamiliar.
The problem they are having, is that they are getting the error ERROR_PATH_NOT_FOUND when they attempt to connect to the named pipe server with OpenFile(). The file name string being passed to the OpenFile() is '\\.\pipe\PipeName.txt'
What changed between python 2.x and 3.x, that would make this string now result in an ERROR_PATH_NOT_FOUND error?