Alexander Myodov <amyo...@gmail.com> added the comment:

Sorry for formatting above, a copypaste issue.

The lines 202-204:
        win32.SetNamedPipeHandleState(
            h2, win32.PIPE_READMODE_MESSAGE, None, None
            )

The change that fixes the problem (at least for me):
        try:
            win32.SetNamedPipeHandleState(
                h2, win32.PIPE_READMODE_MESSAGE, None, None
                )
        except WindowsError, e:
            if e.args[0] != 0: # 0 is error code for SUCCESS
                raise

----------
title: multiprocessing/win32: -> multiprocessing/win32: WindowsError: [Error 0] 
Success on Pipe()

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue9099>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to