| Commit message (Expand) | Author | Age | Files | Lines |
* | [3.12] gh-106033: Get rid of new occurrences of PyDict_GetItem and Py… (#10... | Serhiy Storchaka | 2023-06-24 | 1 | -16/+15 |
|
|
* | [3.12] gh-105071: add PyUnstable_Exc_PrepReraiseStar to expose except* implem... | Irit Katriel | 2023-05-30 | 1 | -0/+39 |
|
|
* | gh-104454: Fix refleak in AttributeError_reduce (#104455) | Charles Machalow | 2023-05-13 | 1 | -1/+3 |
|
|
* | gh-103333: Pickle the keyword attributes of AttributeError (#103352) | Charles Machalow | 2023-05-12 | 1 | -1/+43 |
|
|
* | gh-94673: Properly Initialize and Finalize Static Builtin Types for Each Inte... | Eric Snow | 2023-05-02 | 1 | -6/+2 |
|
|
* | gh-94673: Ensure Builtin Static Types are Readied Properly (gh-103940) | Eric Snow | 2023-04-27 | 1 | -4/+0 |
|
|
* | gh-103590: do not wrap a single exception raised from a try-except* (#103665) | Irit Katriel | 2023-04-27 | 1 | -1/+6 |
|
|
* | gh-102406: replace exception chaining by PEP-678 notes in codecs (#102407) | Irit Katriel | 2023-03-21 | 1 | -110/+0 |
|
|
* | gh-102594: PyErr_SetObject adds note to exception raised on normalization err... | Irit Katriel | 2023-03-16 | 1 | -0/+15 |
|
|
* | gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in... | Irit Katriel | 2023-03-08 | 1 | -26/+13 |
|
|
* | gh-90110: Fix the c-analyzer Tool (#102483) | Eric Snow | 2023-03-07 | 1 | -9/+4 |
|
|
* | GH-101578: Normalize the current exception (GH-101607) | Mark Shannon | 2023-02-08 | 1 | -12/+63 |
|
|
* | gh-99553: fix bug where an ExceptionGroup subclass can wrap a BaseException (... | Irit Katriel | 2022-11-18 | 1 | -1/+13 |
|
|
* | gh-99300: Use Py_NewRef() in Objects/ directory (#99335) | Victor Stinner | 2022-11-10 | 1 | -83/+37 |
|
|
* | gh-99181: fix except* on unhashable exceptions (GH-99192) | Irit Katriel | 2022-11-08 | 1 | -17/+26 |
|
|
* | gh-91058: Add error suggestions to 'import from' import errors (#98305) | Pablo Galindo Salgado | 2022-10-25 | 1 | -4/+16 |
|
|
* | gh-97591: In `Exception.__setstate__()` acquire strong references before call... | Ofey Chan | 2022-10-02 | 1 | -1/+7 |
|
|
* | gh-96005: Handle WASI ENOTCAPABLE in getpath (GH-96006) | Christian Heimes | 2022-08-16 | 1 | -0/+5 |
|
|
* | gh-95369: add missing decref in error case of exception group's split (GH-95370) | Irit Katriel | 2022-07-28 | 1 | -0/+1 |
|
|
* | gh-95324: Emit a warning if an object doesn't call PyObject_GC_UnTrack during... | Pablo Galindo Salgado | 2022-07-27 | 1 | -2/+3 |
|
|
* | gh-94673: Add _PyStaticType_InitBuiltin() (#95152) | Eric Snow | 2022-07-25 | 1 | -2/+1 |
|
|
* | gh-94673: [c-analyzer] Add a Script to Identify Static Types (#94989) | Eric Snow | 2022-07-19 | 1 | -11/+3 |
|
|
* | GH-93207: Remove HAVE_STDARG_PROTOTYPES configure check for stdarg.h (#93215) | Kumar Aditya | 2022-05-27 | 1 | -4/+0 |
|
|
* | Use static inline function Py_EnterRecursiveCall() (#91988) | Victor Stinner | 2022-05-04 | 1 | -5/+6 |
|
|
* | gh-89770: Implement PEP-678 - Exception notes (GH-31317) | Irit Katriel | 2022-04-16 | 1 | -43/+80 |
|
|
* | bpo-46775: OSError should call winerror_to_errno unconditionally on Windows (... | Dong-hee Na | 2022-03-30 | 1 | -8/+1 |
|
|
* | bpo-46857: Fix refleak in OSError INIT_ALIAS() (GH-31594) | Victor Stinner | 2022-02-26 | 1 | -6/+4 |
|
|
* | bpo-46729: add number of sub-exceptions in str() of BaseExceptionGroup (GH-31... | Irit Katriel | 2022-02-22 | 1 | -1/+6 |
|
|
* | bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g... | Eric Snow | 2022-02-08 | 1 | -4/+2 |
|
|
* | bpo-40170: PyType_SUPPORTS_WEAKREFS() becomes a regular function (GH-30938) | Victor Stinner | 2022-01-27 | 1 | -1/+1 |
|
|
* | bpo-46431: improve error message on invalid calls to BaseExceptionGroup.__new... | Irit Katriel | 2022-01-24 | 1 | -1/+4 |
|
|
* | bpo-46417: Clear Unicode static types at exit (GH-30806) | Victor Stinner | 2022-01-22 | 1 | -6/+0 |
|
|
* | bpo-46417: Py_Finalize() clears static exceptioins (GH-30805) | Victor Stinner | 2022-01-22 | 1 | -1/+26 |
|
|
* | bpo-46417: Factorize _PyExc_InitTypes() code (GH-30804) | Victor Stinner | 2022-01-22 | 1 | -170/+132 |
|
|
* | bpo-46417: Use _PyType_CAST() in Objects directory (GH-30764) | Victor Stinner | 2022-01-21 | 1 | -2/+1 |
|
|
* | bpo-46219, 46221: simplify except* implementation following exc_info changes.... | Irit Katriel | 2022-01-02 | 1 | -2/+118 |
|
|
* | bpo-46107: ExceptionGroup.subgroup()/split() should copy __note__ to the part... | Irit Katriel | 2021-12-21 | 1 | -0/+5 |
|
|
* | bpo-45292: [PEP-654] add except* (GH-29581) | Irit Katriel | 2021-12-14 | 1 | -23/+135 |
|
|
* | bpo-46008: Make runtime-global object/type lifecycle functions and state cons... | Eric Snow | 2021-12-09 | 1 | -15/+29 |
|
|
* | bpo-45947: Place dict and values pointer at fixed (negative) offset just befo... | Mark Shannon | 2021-12-07 | 1 | -4/+1 |
|
|
* | bpo-45607: Make it possible to enrich exception displays via setting their __... | Irit Katriel | 2021-12-03 | 1 | -0/+31 |
|
|
* | bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G... | Irit Katriel | 2021-10-22 | 1 | -1/+527 |
|
|
* | Fix typos in the Objects directory (GH-28766) | Christian Clauss | 2021-10-06 | 1 | -1/+1 |
|
|
* | bpo-44348: BaseException deallocator uses trashcan (GH-28190) | Victor Stinner | 2021-09-07 | 1 | -1/+6 |
|
|
* | bpo-44854: Remove trailing whitespaces (GH-27689) | Serhiy Storchaka | 2021-08-09 | 1 | -1/+1 |
|
|
* | bpo-34013: Move the Python 2 hints from the exception constructor to the pars... | Pablo Galindo Salgado | 2021-07-27 | 1 | -201/+0 |
|
|
* | bpo-44029: Remove Py_UNICODE APIs (GH-25881) | Inada Naoki | 2021-05-07 | 1 | -19/+0 |
|
|
* | bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525) | Pablo Galindo | 2021-04-23 | 1 | -17/+28 |
|
|
* | bpo-38530: Properly extend UnboundLocalError from NameError (GH-25444) | Pablo Galindo | 2021-04-16 | 1 | -1/+2 |
|
|
* | bpo-38530: Offer suggestions on NameError (GH-25397) | Pablo Galindo | 2021-04-14 | 1 | -2/+63 |
|
|