summaryrefslogtreecommitdiffstats
path: root/Objects/exceptions.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-13/+17
|\
| * Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-13/+17
* | Issue #22156: Fix "comparison between signed and unsigned integers" compilerVictor Stinner2014-08-151-1/+1
|/
* Issue #21669: Special case print & exec syntax errorsNick Coghlan2014-06-161-0/+135
* Issue #21118: Fix _PyUnicodeTranslateError_Create(), add missing formatVictor Stinner2014-04-041-1/+1
* bail in unicode error's __str__ methods if the objects are not properly initi...Benjamin Peterson2014-04-021-0/+12
* Issue #20517: Removed unnecessary new (short-lived) functions from PyErr.Larry Hastings2014-02-101-2/+2
* Issue #20517: Functions in the os module that accept two filenamesLarry Hastings2014-02-101-33/+86
* Close #20105: set __traceback__ when chaining exceptions in CNick Coghlan2014-01-261-2/+5
* Issue #16136: Remove VMS support and VMS-related codeChristian Heimes2013-12-211-6/+0
* Also chain codec exceptions that allow weakrefsNick Coghlan2013-11-191-3/+14
* Don't decref exc too soonNick Coghlan2013-11-151-1/+2
* Issue #19429, #19437: fix error handling in the OSError constructorVictor Stinner2013-11-141-3/+5
* fix refleaksBenjamin Peterson2013-11-141-3/+7
* adjust styleBenjamin Peterson2013-11-141-12/+8
* Issue #17828: _PyObject_GetDictPtr() may return NULL instead of a PyObject**Christian Heimes2013-11-141-3/+5
* Issue #17828: va_start() must be accompanied by va_end()Christian Heimes2013-11-141-6/+7
* Close #17828: better handling of codec errorsNick Coghlan2013-11-131-0/+113
* Issue #1772673: The type of `char*` arguments now changed to `const char*`.Serhiy Storchaka2013-10-191-4/+4
* Issue #15767: back out 8a0ed9f63c6e, finishing the removal ofBrett Cannon2013-07-041-9/+0
* Issue #15767: Introduce ModuleNotFoundError, a subclass ofBrett Cannon2013-06-121-0/+9
* Issue #17591: Use lowercase filenames when including Windows header files.Antoine Pitrou2013-03-311-1/+1
* 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-151-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-131-2/+97
* Close issue #6210: Implement PEP 409Nick Coghlan2012-02-261-11/+18
* use new generic __dict__ descriptor implementationsBenjamin Peterson2012-02-201-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-041-5/+10
|\ \ | |/
| * put returns on their own linesBenjamin Peterson2012-02-041-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