◐ Shell
clean mode source ↗

Message 143758 - Python tracker

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
>>>