summaryrefslogtreecommitdiffstats
path: root/Objects/exceptions.c
Commit message (Expand)AuthorAgeFilesLines
* gh-95369: add missing decref in error case of exception group's split (GH-95370)Irit Katriel2022-07-281-0/+1
* gh-95324: Emit a warning if an object doesn't call PyObject_GC_UnTrack during...Pablo Galindo Salgado2022-07-271-2/+3
* gh-94673: Add _PyStaticType_InitBuiltin() (#95152)Eric Snow2022-07-251-2/+1
* gh-94673: [c-analyzer] Add a Script to Identify Static Types (#94989)Eric Snow2022-07-191-11/+3
* GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215)Kumar Aditya2022-05-271-4/+0
* Use static inline function Py_EnterRecursiveCall() (#91988)Victor Stinner2022-05-041-5/+6
* gh-89770: Implement PEP-678 - Exception notes (GH-31317)Irit Katriel2022-04-161-43/+80
* bpo-46775: OSError should call winerror_to_errno unconditionally on Windows (...Dong-hee Na2022-03-301-8/+1
* bpo-46857: Fix refleak in OSError INIT_ALIAS() (GH-31594)Victor Stinner2022-02-261-6/+4
* bpo-46729: add number of sub-exceptions in str() of BaseExceptionGroup (GH-31...Irit Katriel2022-02-221-1/+6
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-4/+2
* 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