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 alexis, brian.curtin, eric.araujo, jackjansen, kristjan.jonsson, loewis, mark.dickinson, mhammond, sable, santoso.wijaya, sbt, tarek, tim.golden, vstinner
Date 2012-04-26.16:14:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335456887.03.0.767212733901.issue13210@psf.upfronthosting.co.za>
In-reply-to
Content
> This doesn't change that, and as far as I know, this has worked and 
> continues to work.  "errno" is supported.

Using your patch, does the following throw an AssertionError?

>>> import os, errno
>>> try:
...   os.read(-1, 10)
... except OSError as e:
...   assert e.errno == errno.EBADF
...
>>>
History
Date User Action Args
2012-04-26 16:14:47sbtsetrecipients: + sbt, loewis, mhammond, jackjansen, mark.dickinson, kristjan.jonsson, vstinner, sable, tim.golden, tarek, eric.araujo, brian.curtin, santoso.wijaya, alexis
2012-04-26 16:14:47sbtsetmessageid: <1335456887.03.0.767212733901.issue13210@psf.upfronthosting.co.za>
2012-04-26 16:14:46sbtlinkissue13210 messages
2012-04-26 16:14:46sbtcreate