summaryrefslogtreecommitdiffstats
path: root/Objects/exceptions.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-40170: PyType_SUPPORTS_WEAKREFS() becomes a regular function (GH-30938)Victor Stinner2022-01-271-1/+1
* bpo-46431: improve error message on invalid calls to BaseExceptionGroup.__new...Irit Katriel2022-01-241-1/+4
* bpo-46417: Clear Unicode static types at exit (GH-30806)Victor Stinner2022-01-221-6/+0
* bpo-46417: Py_Finalize() clears static exceptioins (GH-30805)Victor Stinner2022-01-221-1/+26
* bpo-46417: Factorize _PyExc_InitTypes() code (GH-30804)Victor Stinner2022-01-221-170/+132
* bpo-46417: Use _PyType_CAST() in Objects directory (GH-30764)Victor Stinner2022-01-211-2/+1
* bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel2022-01-021-2/+118
* bpo-46107: ExceptionGroup.subgroup()/split() should copy __note__ to the part...Irit Katriel2021-12-211-0/+5
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-141-23/+135
* bpo-46008: Make runtime-global object/type lifecycle functions and state cons...Eric Snow2021-12-091-15/+29
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-071-4/+1
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-031-0/+31
* bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...Irit Katriel2021-10-221-1/+527
* Fix typos in the Objects directory (GH-28766)Christian Clauss2021-10-061-1/+1
* bpo-44348: BaseException deallocator uses trashcan (GH-28190)Victor Stinner2021-09-071-1/+6
* bpo-44854: Remove trailing whitespaces (GH-27689)Serhiy Storchaka2021-08-091-1/+1
* bpo-34013: Move the Python 2 hints from the exception constructor to the pars...Pablo Galindo Salgado2021-07-271-201/+0
* bpo-44029: Remove Py_UNICODE APIs (GH-25881)Inada Naoki2021-05-071-19/+0
* bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525)Pablo Galindo2021-04-231-17/+28
* bpo-38530: Properly extend UnboundLocalError from NameError (GH-25444)Pablo Galindo2021-04-161-1/+2
* bpo-38530: Offer suggestions on NameError (GH-25397)Pablo Galindo2021-04-141-2/+63
* bpo-38530: Offer suggestions on AttributeError (#16856)Pablo Galindo2021-04-141-2/+69
* bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481)Inada Naoki2021-03-291-0/+9
* bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)Victor Stinner2021-02-191-4/+4
* bpo-40170: Always define PyExceptionClass_Name() as a function (GH-24553)Erlend Egeberg Aasland2021-02-171-2/+0
* bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446)Serhiy Storchaka2020-11-211-1/+3
* bpo-41654: Fix compiler warning in MemoryError_dealloc() (GH-22387)Victor Stinner2020-09-231-1/+2
* bpo-41654: Fix deallocator of MemoryError to account for subclasses (GH-22020)Pablo Galindo2020-09-011-2/+12
* bpo-40521: Make MemoryError free list per interpreter (GH-21086)Victor Stinner2020-06-231-30/+45
* bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)Victor Stinner2020-05-051-11/+25
* bpo-40268: Remove unused osdefs.h includes (GH-19532)Victor Stinner2020-04-151-3/+5
* bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)Victor Stinner2020-04-151-1/+0
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-1/+1
* bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)Victor Stinner2020-04-141-1/+0
* bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....Serhiy Storchaka2020-04-111-2/+2
* bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)Andy Lester2020-03-041-2/+2
* bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15131)Nick Coghlan2019-08-251-9/+0
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-1/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-2/+2
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-271-12/+12
* bpo-36763: Add _PyInitError functions (GH-13395)Victor Stinner2019-05-171-0/+1
* fix confusing argument name in unicodeobject.c (GH-12653)Max Bernstein2019-04-021-2/+2
* bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)Serhiy Storchaka2019-02-251-1/+1
* bpo-35224: PEP 572 Implementation (#10497)Emily Morehouse2019-01-241-0/+9
* bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650)Victor Stinner2019-01-221-51/+63
* bpo-35713: Rework Python initialization (GH-11647)Victor Stinner2019-01-221-188/+207
* bpo-35504: Fix a SystemError when delete the characters_written attribute of ...Serhiy Storchaka2018-12-171-0/+8
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-271-13/+17
* bpo-35081: Add Include/internal/pycore_object.h (GH-10640)Victor Stinner2018-11-211-0/+1
* bpo-35081: Rename internal headers (GH-10275)Victor Stinner2018-11-121-2/+2