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 sbt
Recipients jbrearley, sbt
Date 2013-01-13.20:58:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1358110719.21.0.62997322184.issue16955@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks for the report.

It seems to only affect Windows, and only when using sockets rather than pipes.

Till this is fixed you could use

    temp = bool(multiprocessing.connection.wait([cl], 1))

instead of

    temp = cl.poll(1)


As I mentioned on the other issue, I would not advise use of Listener() and Client() without using authentication -- you are probably better off using raw sockets and select().
History
Date User Action Args
2013-01-13 20:58:39sbtsetrecipients: + sbt, jbrearley
2013-01-13 20:58:39sbtsetmessageid: <1358110719.21.0.62997322184.issue16955@psf.upfronthosting.co.za>
2013-01-13 20:58:39sbtlinkissue16955 messages
2013-01-13 20:58:39sbtcreate