summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pep3151.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #16136: Remove VMS support and VMS-related codeChristian Heimes2013-12-211-2/+0
|
* Issue #15229: An OSError subclass whose __init__ doesn't call backAntoine Pitrou2012-06-301-0/+10
| | | | | OSError.__init__ could produce incomplete instances, leading to crashes when calling str() on them.
* Fix OSError.__init__ and OSError.__new__ so that each of them can beAntoine Pitrou2011-12-151-5/+55
| | | | overriden and take additional arguments (followup to issue #12555).
* Instantiate the OS-related exception as soon as we raise it, so that "except"Victor Stinner2011-10-171-1/+12
| | | | | | | | works properly. PyErr_SetFromErrnoWithFilenameObject() was already fixed by the changeset 793c75177d28. This commit fixes PyErr_SetExcFromWindowsErrWithFilenameObject(), used on Windows.
* Instantiate the OS-related exception as soon as we raise it, so thatAntoine Pitrou2011-10-121-0/+12
| | | | "except" works properly.
* PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou2011-10-121-0/+128