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 christian.heimes
Recipients amaury.forgeotdarc, christian.heimes, vstinner
Date 2013-06-21.11:52:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371815537.43.0.698978328307.issue18276@psf.upfronthosting.co.za>
In-reply-to
Content
os.write() already works with file and sockets object but you have to call ob.fileno() first. The select module uses PyObject_AsFileDescriptor() all over the module to get the file descriptor number from file and socket objects.

Let's unify os' and select's behavior!
History
Date User Action Args
2013-06-21 11:52:17christian.heimessetrecipients: + christian.heimes, amaury.forgeotdarc, vstinner
2013-06-21 11:52:17christian.heimessetmessageid: <1371815537.43.0.698978328307.issue18276@psf.upfronthosting.co.za>
2013-06-21 11:52:17christian.heimeslinkissue18276 messages
2013-06-21 11:52:17christian.heimescreate