[issue13210] Support Visual Studio 2010

Richard Oudkerk report at bugs.python.org
Thu Apr 26 18:14:47 CEST 2012


Richard Oudkerk <shibturn at gmail.com> added the comment:

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

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13210>
_______________________________________


More information about the Python-bugs-list mailing list