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 Jimbofbx, asksol, dragonfyre13, dsvensson, gsson, jnoller, jodal, pitrou, sbt
Date 2012-04-07.19:08:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333825718.27.0.206256902267.issue4892@psf.upfronthosting.co.za>
In-reply-to
Content
> There is a simpler way to do this on Windows.  The sending process 
> duplicates the handle, and the receiving process duplicates that second 
> handle using DuplicateHandle() and the DUPLICATE_CLOSE_SOURCE flag.  That 
> way no server thread is necessary on Windows.

Note that this should not be done for socket handles since DuplicateHandle() is not supposed to work for them.  socket.share() and socket.fromshare() with a server thread can be used for sockets.
History
Date User Action Args
2012-04-07 19:08:38sbtsetrecipients: + sbt, pitrou, jnoller, gsson, dsvensson, asksol, jodal, Jimbofbx, dragonfyre13
2012-04-07 19:08:38sbtsetmessageid: <1333825718.27.0.206256902267.issue4892@psf.upfronthosting.co.za>
2012-04-07 19:08:37sbtlinkissue4892 messages
2012-04-07 19:08:37sbtcreate