This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author amyodov
Recipients amyodov
Date 2010-06-28.13:00:32
SpamBayes Score 8.6775086e-05
Marked as misclassified No
Message-id <1277730033.77.0.809382443208.issue9099@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2010-06-28 13:00:33amyodovsetrecipients: + amyodov
2010-06-28 13:00:33amyodovsetmessageid: <1277730033.77.0.809382443208.issue9099@psf.upfronthosting.co.za>
2010-06-28 13:00:32amyodovlinkissue9099 messages
2010-06-28 13:00:32amyodovcreate