summaryrefslogtreecommitdiffstats
path: root/Objects/exceptions.c
Commit message (Expand)AuthorAgeFilesLines
* gh-114570: Add PythonFinalizationError exception (#115352)Victor Stinner2024-02-141-0/+5
* gh-89240: Enable multiprocessing on Windows to use large process pools (GH-10...Steve Dower2024-02-131-4/+3
* gh-113744: Add a new IncompleteInputError exception to improve incomplete inp...Pablo Galindo Salgado2024-01-301-0/+6
* gh-111666: Speed up `BaseExceptionGroup.{derive,split,subgroup}` (#111667)Nikita Sobolev2023-11-041-20/+6
* gh-109894: Fix initialization of static `MemoryError` in subinterpreter (gh-1...Radislav Chugunov2023-10-231-4/+0
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-1/+2
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-31/+31
* gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)Serhiy Storchaka2023-07-121-2/+2
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-1/+0
* fix typos (#106247)Inada Naoki2023-06-301-1/+1
* gh-106084: Remove _PyObject_RealIsInstance() function (#106106)Victor Stinner2023-06-261-0/+1
* gh-105730: support more callables in ExceptionGroup.split() and subgroup() (#...Irit Katriel2023-06-231-3/+3
* gh-106033: Get rid of new occurrences of PyDict_GetItem and PyObject_HasAttr ...Serhiy Storchaka2023-06-231-16/+15
* gh-92536: Remove PyUnicode_READY() calls (#105210)Victor Stinner2023-06-011-2/+0
* gh-105071: add PyUnstable_Exc_PrepReraiseStar to expose except* implementatio...Irit Katriel2023-05-301-0/+39
* gh-104454: Fix refleak in AttributeError_reduce (#104455)Charles Machalow2023-05-131-1/+3
* gh-103333: Pickle the keyword attributes of AttributeError (#103352)Charles Machalow2023-05-121-1/+43
* gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte...Eric Snow2023-05-021-6/+2
* gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940)Eric Snow2023-04-271-4/+0
* gh-103590: do not wrap a single exception raised from a try-except* (#103665)Irit Katriel2023-04-271-1/+6
* gh-102406: replace exception chaining by PEP-678 notes in codecs (#102407)Irit Katriel2023-03-211-110/+0
* gh-102594: PyErr_SetObject adds note to exception raised on normalization err...Irit Katriel2023-03-161-0/+15
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...Irit Katriel2023-03-081-26/+13
* gh-90110: Fix the c-analyzer Tool (#102483)Eric Snow2023-03-071-9/+4
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-081-12/+63
* gh-99553: fix bug where an ExceptionGroup subclass can wrap a BaseException (...Irit Katriel2022-11-181-1/+13
* gh-99300: Use Py_NewRef() in Objects/ directory (#99335)Victor Stinner2022-11-101-83/+37
* gh-99181: fix except* on unhashable exceptions (GH-99192)Irit Katriel2022-11-081-17/+26
* gh-91058: Add error suggestions to 'import from' import errors (#98305)Pablo Galindo Salgado2022-10-251-4/+16
* gh-97591: In `Exception.__setstate__()` acquire strong references before call...Ofey Chan2022-10-021-1/+7
* gh-96005: Handle WASI ENOTCAPABLE in getpath (GH-96006)Christian Heimes2022-08-161-0/+5
* 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