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 pitrou
Recipients brett.cannon, davin, eric.snow, giampaolo.rodola, lukasz.langa, nascheme, osvenskan, pitrou, pmpp, rhettinger, ronaldoussoren, skrah, terry.reedy, yselivanov
Date 2019-02-07.18:02:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1549562542.41.0.797565850226.issue35813@roundup.psfhosted.org>
In-reply-to
Content
(also, OSError will automatically convert to more specific subclasses for some errnos, see PEP 3151:

>>> raise OSError(errno.ENOENT, "foobar")                                                                                                                              
Traceback (most recent call last):
  File "<ipython-input-3-e08f9c9a179c>", line 1, in <module>
    raise OSError(errno.ENOENT, "foobar")
FileNotFoundError: [Errno 2] foobar

)
History
Date User Action Args
2019-02-07 18:02:23pitrousetrecipients: + pitrou, brett.cannon, nascheme, rhettinger, terry.reedy, ronaldoussoren, osvenskan, giampaolo.rodola, skrah, pmpp, lukasz.langa, eric.snow, yselivanov, davin
2019-02-07 18:02:22pitrousetmessageid: <1549562542.41.0.797565850226.issue35813@roundup.psfhosted.org>
2019-02-07 18:02:22pitroulinkissue35813 messages
2019-02-07 18:02:22pitroucreate