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 martin.panter
Recipients asvetlov, docs@python, martin.panter, serhiy.storchaka
Date 2015-10-27.03:56:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1445918216.2.0.500088260967.issue16785@psf.upfronthosting.co.za>
In-reply-to
Content
Hopefully revision cb554248ce54 is good enough to close this. The documentation now says

'''
The constructor often actually returns a subclass of OSError, as described in “OS exceptions” below. The particular subclass depends on the final “errno” value. This behaviour only occurs when constructing OSError directly or via an alias, and is not inherited when subclassing.
'''

Serhiy’s first case does not set the “errno” attribute (by design I assume). In the second case, I suspect the behaviour has changed since 2012, or it depends on the platform. On Windows, the 'spam' argument is meant to become “winerror”, which can override “errno” if it is an integer. 3.6 on Linux:

>>> OSError(errno.ENOENT, 'error msg', 'filename', 'spam')
FileNotFoundError(2, 'error msg')
History
Date User Action Args
2015-10-27 03:56:56martin.pantersetrecipients: + martin.panter, asvetlov, docs@python, serhiy.storchaka
2015-10-27 03:56:56martin.pantersetmessageid: <1445918216.2.0.500088260967.issue16785@psf.upfronthosting.co.za>
2015-10-27 03:56:56martin.panterlinkissue16785 messages
2015-10-27 03:56:55martin.pantercreate