aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/errors.c
Commit message (Expand)AuthorAge
* bpo-38920: Add audit hooks for when sys.excepthook and sys.unraisable hooks a...Steve Dower2019-11-28
* bpo-38733: PyErr_Occurred() caller must hold the GIL (GH-17080)Victor Stinner2019-11-07
* bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050)Victor Stinner2019-11-05
* bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer2019-07-08
* bpo-37483: add _PyObject_CallOneArg() function (#14558)Jeroen Demeyer2019-07-04
* bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060)Victor Stinner2019-06-13
* bpo-36829: sys.excepthook and sys.unraisablehook flush (GH-13620)Victor Stinner2019-05-28
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-27
* bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)Victor Stinner2019-05-27
* bpo-36710: Add tstate parameter in ceval.c (GH-13547)Victor Stinner2019-05-24
* bpo-36710: Add tstate parameter in errors.c (GH-13540)Victor Stinner2019-05-24
* bpo-36829: PyErr_WriteUnraisable() normalizes exception (GH-13507)Victor Stinner2019-05-23
* bpo-36829: Add sys.unraisablehook() (GH-13187)Victor Stinner2019-05-22
* bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-25
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-12
* bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)Victor Stinner2018-11-01
* bpo-35081: Add pycore_ prefix to internal header files (GH-10263)Victor Stinner2018-11-01
* bpo-34503: Fix refleak in PyErr_SetObject() (GH-8934)Alexey Izbyshev2018-08-27
* bpo-33818: PyExceptionClass_Name() will now return "const char *". (GH-7581)Serhiy Storchaka2018-06-15
* bpo-28994: PyErr_NormalizeException() no longer use C stack for recursion. (#...Serhiy Storchaka2017-11-05
* bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327)xdegaye2017-10-26
* Move exc state to generator. Fixes bpo-25612 (#1773)Mark Shannon2017-10-22
* bpo-31418: Fix an assertion failure in PyErr_WriteUnraisable() in case of an ...Oren Milman2017-09-14
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-07
* bpo-31091: Remove dead code in PyErr_GivenExceptionMatches(). (#2963)scoder2017-07-31
* Issue #25677: Merge SyntaxError caret positioning from 3.6Martin Panter2016-12-19
|\
| * Issue #25677: Merge SyntaxError caret positioning from 3.5Martin Panter2016-12-19
| |\
| | * Issue #25677: Correct syntax error caret for indented blocks.Martin Panter2016-12-11
* | | Issue #28512: Fixed setting the offset attribute of SyntaxError bySerhiy Storchaka2016-12-11
|\| |
| * | Issue #28512: Fixed setting the offset attribute of SyntaxError bySerhiy Storchaka2016-12-11
| |\|
| | * Issue #28512: Fixed setting the offset attribute of SyntaxError bySerhiy Storchaka2016-12-11
* | | Issue #28858: Remove _PyObject_CallArg1() macroVictor Stinner2016-12-05
* | | Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka2016-11-20
* | | Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.Serhiy Storchaka2016-11-16
|\| |
| * | Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.Serhiy Storchaka2016-11-16
| |\|
| | * Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId.Serhiy Storchaka2016-11-16
* | | Issue #28618: Make hot functions using __attribute__((hot))Victor Stinner2016-11-11
* | | Use PyThreadState_GET() in performance critical codeVictor Stinner2016-11-11
|/ /
* | Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raisingSerhiy Storchaka2016-10-21
* | Issue #28410: Keep the traceback of original exception in _PyErr_ChainExcepti...Serhiy Storchaka2016-10-21
|\|
| * Issue #28410: Keep the traceback of original exception in _PyErr_ChainExcepti...Serhiy Storchaka2016-10-21
* | Issue #15767: Use ModuleNotFoundError.Eric Snow2016-09-07
* | Issue #27809: PyErr_SetImportError() uses fast callVictor Stinner2016-08-23
* | Add _PyErr_CreateException()Victor Stinner2016-08-22
|/
* Issue #23960: Cleanup args and kwargs on error in PyErr_SetImportErrorBerker Peksag2016-05-01
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-10
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-06
* Issue #22836: Keep exception reports sensible despite errorsMartin Panter2016-02-28
* Add _PyThreadState_UncheckedGet()Victor Stinner2016-01-20
* Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-27