summaryrefslogtreecommitdiff
path: root/Objects/exceptions.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #15784: Modify OSError.__str__() to better distinguish betweenRichard Oudkerk2012-08-281-2/+2
* Issue #15778: Coerce ImportError.args to a string when it isn'tBrett Cannon2012-08-241-1/+1
* Issue #1692335: Move initial args assignment to BaseException.__new__Richard Oudkerk2012-07-281-1/+10
* Issue #15229: An OSError subclass whose __init__ doesn't call backAntoine Pitrou2012-06-301-0/+6
* Issue #13783: the PEP 380 implementation no longer expands the public C APINick Coghlan2012-06-171-6/+0
* Fix build failure.Antoine Pitrou2012-05-161-1/+2
* PEP 415: Implement suppression of __context__ display with an exception attri...Benjamin Peterson2012-05-141-19/+20
* Fix #13210. Port the Windows build from VS2008 to VS2010.Brian Curtin2012-05-131-0/+28
* Issue #2377: Make importlib the implementation of __import__().Brett Cannon2012-04-141-6/+2
* Issue #1559549: Add 'name' and 'path' attributes to ImportError.Brett Cannon2012-04-121-2/+97
* Close issue #6210: Implement PEP 409Nick Coghlan2012-02-261-11/+18
* use new generic __dict__ descriptor implementationsBenjamin Peterson2012-02-191-31/+1
* merge 3.2Benjamin Peterson2012-02-101-1/+1
|\
| * this is only a borrowed ref in Brett's branchBenjamin Peterson2012-02-101-1/+1
* | merge 3.2Benjamin Peterson2012-02-061-1/+0
|\ \ | |/
| * bltinmod is borrowed, so it shouldn't be decrefedBenjamin Peterson2012-02-061-1/+0
* | merge 3.2Benjamin Peterson2012-02-031-5/+10
|\ \ | |/
| * put returns on their own linesBenjamin Peterson2012-02-031-5/+10
* | Fix some of the remaining test_capi leaksAntoine Pitrou2012-01-181-3/+5
* | Fix some of the remaining test_capi refleaksAntoine Pitrou2012-01-181-0/+2
* | Fix some of the refleaks in test_capi (ported from 3.2)Antoine Pitrou2012-01-181-3/+7
|\ \ | |/
| * Fix refleaks in test_capiAntoine Pitrou2012-01-181-3/+7
* | Merge refleak fixes from 3.2Antoine Pitrou2012-01-181-21/+23
|\ \ | |/
| * Fix leaking a RuntimeError objects when creating sub-interpretersAntoine Pitrou2012-01-181-21/+23
* | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-131-2/+64
* | Fix OSError.__init__ and OSError.__new__ so that each of them can beAntoine Pitrou2011-12-151-57/+159
* | Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()Victor Stinner2011-11-211-2/+2
* | UnicodeTranslateError uses the new Unicode APIVictor Stinner2011-11-211-3/+3
* | UnicodeEncodeError uses the new Unicode APIVictor Stinner2011-11-201-3/+3
* | Port error handlers from Py_UNICODE indexing to code point indexing.Martin v. Löwis2011-11-041-0/+5
* | PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou2011-10-121-184/+349
* | Fix my_basename(): make the string readyVictor Stinner2011-10-051-2/+7
* | Implement PEP 393.Martin v. Löwis2011-09-281-10/+16
* | SystemExit_init(): avoid an useless testVictor Stinner2011-05-261-1/+1
|/
* Issue #5437: A preallocated MemoryError instance should not hold tracebackAntoine Pitrou2010-10-281-10/+87
* Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ...Georg Brandl2010-10-241-0/+10
* Merged revisions 82157 via svnmerge fromBenjamin Peterson2010-06-221-3/+0
* Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#Victor Stinner2010-06-071-2/+2
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-22/+22
* Don't decode/recode the unicode filename in SyntaxError_str()Victor Stinner2010-04-281-20/+34
* plug reference leakBenjamin Peterson2010-02-251-1/+1
* Merged revisions 78418 via svnmerge fromEric Smith2010-02-241-34/+79
* Merged revisions 73376,73393,73398,73400,73404-73405,73409,73419-73421,73432,...Benjamin Peterson2009-06-281-2/+2
* Merged revisions 73447-73448 via svnmerge fromGeorg Brandl2009-06-161-1/+0
* Fix segfaults when running test_exceptions with coverage tracing, caused by w...Georg Brandl2009-03-311-9/+57
* Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,...Benjamin Peterson2009-02-131-34/+0
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 ...Benjamin Peterson2009-01-181-1/+1
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-1/+1
* #3295 actually define PyExc_BufferErrorBenjamin Peterson2008-07-051-0/+2