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 neologix, sbt, vstinner
Date 2013-08-16.15:52:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376668326.3.0.682179152484.issue18643@psf.upfronthosting.co.za>
In-reply-to
Content
Do you mean you want to use a pure python implementation on Unix?

Then you would have to deal with AF_UNIX (which is the default family for socketpair() currently).  A pure python implementation which deals with AF_UNIX would have to temporarily create a listening socket on the file system and deal with races like tempfile.mkstemp() does.  I think it is simpler to only use the pure python implementation on Windows.

BTW, it is possible for another process to connect to the address we temporily bind to.  Neither my version nor the one in tulip handle that correctly.
History
Date User Action Args
2013-08-16 15:52:06sbtsetrecipients: + sbt, vstinner, neologix
2013-08-16 15:52:06sbtsetmessageid: <1376668326.3.0.682179152484.issue18643@psf.upfronthosting.co.za>
2013-08-16 15:52:06sbtlinkissue18643 messages
2013-08-16 15:52:06sbtcreate