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 skrah
Recipients Trundle, barry, djc, eric.araujo, nadeem.vawda, ncoghlan, petri.lehtinen, pitrou, rpointel, skrah
Date 2011-09-09.10:01:56
SpamBayes Score 7.0078747e-09
Marked as misclassified No
Message-id <1315562517.45.0.135389890365.issue12555@psf.upfronthosting.co.za>
In-reply-to
Content
I still need to understand the full impact of the PEP, but it seems
very sound. I've left two small comments on Rietveld, and there's
an additional question:


Should the input of OSError be checked?

>>> OSError("not an errno", "Bad file descriptor")
OSError('not an errno', 'Bad file descriptor')
>>> o = OSError("not an errno", "Bad file descriptor")
>>> raise o
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno not an errno] Bad file descriptor
>>>
History
Date User Action Args
2011-09-09 10:01:57skrahsetrecipients: + skrah, barry, ncoghlan, pitrou, nadeem.vawda, djc, eric.araujo, Trundle, petri.lehtinen, rpointel
2011-09-09 10:01:57skrahsetmessageid: <1315562517.45.0.135389890365.issue12555@psf.upfronthosting.co.za>
2011-09-09 10:01:56skrahlinkissue12555 messages
2011-09-09 10:01:56skrahcreate