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 christian.heimes, sbt, serhiy.storchaka, socketpair
Date 2013-07-04.18:30:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1372962610.64.0.211519797617.issue18329@psf.upfronthosting.co.za>
In-reply-to
Content
The only real reason for implementing SocketIO in pure Python is because read() and write() do not work on Windows with sockets.  (I think there are also a few complications involving SSL sockets and the close() method.)

On Windows I have implemented a file object type in C which works with pipe handles.  I hope to use it in multiprocessing at some point.  It would not be too difficult to support sockets as well and use that instead of SocketIO.  For Unix, FileIO can be used instead of SocketIO.
History
Date User Action Args
2013-07-04 18:30:10sbtsetrecipients: + sbt, christian.heimes, socketpair, serhiy.storchaka
2013-07-04 18:30:10sbtsetmessageid: <1372962610.64.0.211519797617.issue18329@psf.upfronthosting.co.za>
2013-07-04 18:30:10sbtlinkissue18329 messages
2013-07-04 18:30:10sbtcreate