summaryrefslogtreecommitdiffstats
path: root/Python/traceback.c
Commit message (Expand)AuthorAgeFilesLines
* gh-142737: Handle lost `io.open` in `_Py_FindSourceFile` (GH-142747)Bartosz Sławecki2025-12-151-0/+3
* gh-138122: Don't sample partial frame chains (#141912)Pablo Galindo Salgado2025-12-071-1/+1
* gh-116008: Detect freed thread state in faulthandler (#141988)Victor Stinner2025-11-271-4/+19
* gh-140815: Fix faulthandler for invalid/freed frame (#140921)Victor Stinner2025-11-041-23/+37
* gh-125434: Fix non-ASCII thread names in faulthandler on Windows (#140700)Victor Stinner2025-10-281-12/+53
* gh-125434: Display thread name in faulthandler on Windows (#140675)Victor Stinner2025-10-271-14/+75
* gh-138661: fix data race in `PyCode_Addr2Line` (#138664)Kumar Aditya2025-09-121-2/+2
* gh-137185: Fix `_Py_DumpStack()` async signal safety (gh-137187)Sam Gross2025-07-291-0/+10
* gh-108512: Add and use new replacements for PySys_GetObject() (GH-111035)Serhiy Storchaka2025-05-281-3/+2
* GH-124715: Move trashcan mechanism into `Py_Dealloc` (GH-132280)Mark Shannon2025-04-301-2/+0
* gh-127604: ensure `-ldl` is passed only once to the linker (#133071)Bénédikt Tran2025-04-281-2/+2
* gh-127604: Only define dump_pointer() if CAN_C_BACKTRACE (#132897)Victor Stinner2025-04-251-0/+2
* gh-127604: Replace dprintf() with _Py_write_noraise() (#132854)Victor Stinner2025-04-231-16/+52
* gh-127604: Allow faulthandler to dumpC stack on MacOS (#132841)Pablo Galindo Salgado2025-04-231-3/+20
* gh-127604: Add C stack dumps to `faulthandler` (#128159)Peter Bierma2025-04-211-0/+108
* gh-125434: Fix building on OpenBSD (GH-132393)Serhiy Storchaka2025-04-121-0/+11
* gh-125434: Display thread name in faulthandler (#132016)Victor Stinner2025-04-041-1/+22
* gh-131238: Remove includes from pycore_interp.h (#131495)Victor Stinner2025-03-201-5/+2
* gh-128421: add critical section around `traceback.tb_next` (#131322)Kumar Aditya2025-03-201-13/+30
* gh-130163: Fix crashes related to PySys_GetObject() (GH-130503)Serhiy Storchaka2025-02-251-5/+14
* gh-111178: fix UBSan failures in `Python/traceback.c` (GH-128259)Bénédikt Tran2025-01-271-16/+26
* GH-128563: Add new frame owner type for interpreter entry frames (GH-129078)Mark Shannon2025-01-211-3/+3
* gh-123967: Fix faulthandler for trampoline frames (#127329)Victor Stinner2024-11-271-9/+14
* gh-117764: Fix and add signatures for many builtins (GH-117769)Serhiy Storchaka2024-04-121-4/+4
* gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private (#1...Irit Katriel2024-04-021-1/+0
* GH-113655: Lower the C recursion limit on various platforms (GH-113944)Mark Shannon2024-01-161-1/+5
* Remove dead code left after gh-110721 (#111905)Serhiy Storchaka2023-11-101-37/+0
* Remove unnecessary includes (GH-111633)Serhiy Storchaka2023-11-021-1/+0
* gh-109181: Speed up Traceback object creation by lazily compute the line numb...Pablo Galindo Salgado2023-10-311-6/+29
* gh-110721: Use the traceback module for PyErr_Display() and fallback to the C...Pablo Galindo Salgado2023-10-121-296/+19
* gh-104169: Fix test_peg_generator after tokenizer refactoring (#110727)Lysandros Nikolaou2023-10-121-1/+1
* gh-110014: Include explicitly <unistd.h> header (#110155)Victor Stinner2023-09-301-3/+4
* gh-110052: Fix faulthandler for freed tstate (#110069)Victor Stinner2023-09-291-10/+37
* gh-106922: Fix error location for constructs with spaces and parentheses (#10...Pablo Galindo Salgado2023-09-081-0/+17
* gh-108765: Cleanup #include in Python/*.c files (#108977)Victor Stinner2023-09-061-2/+2
* gh-106320: Remove private _PySys functions (#108452)Victor Stinner2023-08-241-0/+1
* Ignore _Py_write_noraise() result: cast to (void) (#108291)Victor Stinner2023-08-221-5/+5
* GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...Mark Shannon2023-08-171-1/+1
* gh-106869: Use new PyMemberDef constant names (#106871)Victor Stinner2023-07-251-4/+4
* GH-100987: Allow objects other than code objects as the "executable" of an in...Mark Shannon2023-06-141-2/+2
* gh-105148: make _PyASTOptimizeState internal to ast_opt.c (#105149)Irit Katriel2023-05-311-5/+1
* GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...Mark Shannon2023-05-051-1/+1
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...Irit Katriel2023-03-161-9/+10
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-081-4/+5
* gh-99537: Use Py_SETREF() function in C code (#99657)Victor Stinner2022-11-221-5/+2
* gh-99103: Normalize specialized traceback anchors against the current line (G...Batuhan Taskaya2022-11-121-2/+7
* GH-96421: Insert shim frame on entry to interpreter (GH-96319)Mark Shannon2022-11-101-0/+9
* gh-99300: Use Py_NewRef() in Python/ directory (#99317)Victor Stinner2022-11-101-10/+5
* gh-93883: elide traceback indicators when possible (#93994)John Belmonte2022-07-111-4/+14
* gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)Victor Stinner2022-06-191-1/+2