summaryrefslogtreecommitdiff
path: root/Python/errors.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36829: Enhance PyErr_WriteUnraisable() (GH-13487)Victor Stinner2019-05-221-53/+84
* bpo-34503: Fix refleak in PyErr_SetObject() (GH-8934)Miss Islington (bot)2018-08-261-0/+1
* bpo-28994: PyErr_NormalizeException() no longer use C stack for recursion. (#...Serhiy Storchaka2017-11-051-39/+33
* bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327)xdegaye2017-10-261-16/+30
* Move exc state to generator. Fixes bpo-25612 (#1773)Mark Shannon2017-10-221-10/+24
* bpo-31418: Fix an assertion failure in PyErr_WriteUnraisable() in case of an ...Oren Milman2017-09-141-1/+1
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-0/+1
* bpo-31091: Remove dead code in PyErr_GivenExceptionMatches(). (#2963)scoder2017-07-311-13/+1
* Issue #25677: Merge SyntaxError caret positioning from 3.6Martin Panter2016-12-191-4/+1
|\
| * Issue #25677: Merge SyntaxError caret positioning from 3.5Martin Panter2016-12-191-4/+1
| |\
| | * Issue #25677: Correct syntax error caret for indented blocks.Martin Panter2016-12-111-4/+1
* | | Issue #28512: Fixed setting the offset attribute of SyntaxError bySerhiy Storchaka2016-12-111-8/+4
|\ \ \ | |/ /
| * | Issue #28512: Fixed setting the offset attribute of SyntaxError bySerhiy Storchaka2016-12-111-8/+4
| |\ \ | | |/
| | * Issue #28512: Fixed setting the offset attribute of SyntaxError bySerhiy Storchaka2016-12-111-8/+4
* | | Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner2016-12-051-1/+1
* | | Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka2016-11-201-9/+3
* | | Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.Serhiy Storchaka2016-11-161-1/+1
|\ \ \ | |/ /
| * | Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.Serhiy Storchaka2016-11-161-1/+1
| |\ \ | | |/
| | * Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.Serhiy Storchaka2016-11-161-1/+1
* | | Issue #28618: Make hot functions using __attribute__((hot))Victor Stinner2016-11-111-1/+1
* | | Use PyThreadState_GET() in performance critical codeVictor Stinner2016-11-111-1/+1
|/ /
* | Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raisingSerhiy Storchaka2016-10-211-0/+41
* | Issue #28410: Keep the traceback of original exception in _PyErr_ChainExcepti...Serhiy Storchaka2016-10-211-1/+4
|\ \ | |/
| * Issue #28410: Keep the traceback of original exception in _PyErr_ChainExcepti...Serhiy Storchaka2016-10-211-1/+4
* | Issue #15767: Use ModuleNotFoundError.Eric Snow2016-09-071-6/+22
* | Issue #27809: PyErr_SetImportError() uses fast callVictor Stinner2016-08-231-14/+8
* | Add _PyErr_CreateException()Victor Stinner2016-08-221-30/+29
|/
* Issue #23960: Cleanup args and kwargs on error in PyErr_SetImportErrorBerker Peksag2016-05-011-3/+3
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-2/+2
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-2/+2
* Issue #22836: Keep exception reports sensible despite errorsMartin Panter2016-02-281-4/+12
* Add _PyThreadState_UncheckedGet()Victor Stinner2016-01-201-7/+1
* Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-8/+5
* Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.Yury Selivanov2015-07-031-1/+1
* Issue #22977: Fixed formatting Windows error messages on Wine.Serhiy Storchaka2015-04-021-2/+2
|\
| * Issue #22977: Fixed formatting Windows error messages on Wine.Serhiy Storchaka2015-04-021-2/+2
* | Issue #23571: PyErr_FormatV() and PyErr_SetObject() now always clear theVictor Stinner2015-03-241-8/+7
* | Issue #23694: Enhance _Py_fopen(), it now raises an exception on errorVictor Stinner2015-03-181-0/+4
* | Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-081-0/+24
|\ \ | |/
| * Issue #21715: Extracted shared complicated code in the _io module to newSerhiy Storchaka2014-10-081-0/+24
* | Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` b...Antoine Pitrou2014-09-301-10/+15
|/
* Issue #20517: Removed unnecessary new (short-lived) functions from PyErr.Larry Hastings2014-02-101-101/+3
* Issue #20517: Functions in the os module that accept two filenamesLarry Hastings2014-02-091-22/+147
* Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-071-2/+5
* Issue #19512: add _PyUnicode_CompareWithId() functionVictor Stinner2013-11-071-1/+1
* Issue #19512: add some common identifiers to only create common strings once,Victor Stinner2013-11-061-1/+1
* Don't export internal symbols ("make smelly")Antoine Pitrou2013-10-121-1/+1
* Factor-out the common code for setting a KeyError.Raymond Hettinger2013-09-021-0/+14
* Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-2/+2
* Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-261-15/+41