index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
traceback.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-117764: Fix and add signatures for many builtins (GH-117769)
Serhiy Storchaka
2024-04-12
1
-4/+4
*
gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private (#1...
Irit Katriel
2024-04-02
1
-1/+0
*
GH-113655: Lower the C recursion limit on various platforms (GH-113944)
Mark Shannon
2024-01-16
1
-1/+5
*
Remove dead code left after gh-110721 (#111905)
Serhiy Storchaka
2023-11-10
1
-37/+0
*
Remove unnecessary includes (GH-111633)
Serhiy Storchaka
2023-11-02
1
-1/+0
*
gh-109181: Speed up Traceback object creation by lazily compute the line numb...
Pablo Galindo Salgado
2023-10-31
1
-6/+29
*
gh-110721: Use the traceback module for PyErr_Display() and fallback to the C...
Pablo Galindo Salgado
2023-10-12
1
-296/+19
*
gh-104169: Fix test_peg_generator after tokenizer refactoring (#110727)
Lysandros Nikolaou
2023-10-12
1
-1/+1
*
gh-110014: Include explicitly <unistd.h> header (#110155)
Victor Stinner
2023-09-30
1
-3/+4
*
gh-110052: Fix faulthandler for freed tstate (#110069)
Victor Stinner
2023-09-29
1
-10/+37
*
gh-106922: Fix error location for constructs with spaces and parentheses (#10...
Pablo Galindo Salgado
2023-09-08
1
-0/+17
*
gh-108765: Cleanup #include in Python/*.c files (#108977)
Victor Stinner
2023-09-06
1
-2/+2
*
gh-106320: Remove private _PySys functions (#108452)
Victor Stinner
2023-08-24
1
-0/+1
*
Ignore _Py_write_noraise() result: cast to (void) (#108291)
Victor Stinner
2023-08-22
1
-5/+5
*
GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...
Mark Shannon
2023-08-17
1
-1/+1
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-4/+4
*
GH-100987: Allow objects other than code objects as the "executable" of an in...
Mark Shannon
2023-06-14
1
-2/+2
*
gh-105148: make _PyASTOptimizeState internal to ast_opt.c (#105149)
Irit Katriel
2023-05-31
1
-5/+1
*
GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...
Mark Shannon
2023-05-05
1
-1/+1
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...
Irit Katriel
2023-03-16
1
-9/+10
*
GH-101578: Normalize the current exception (GH-101607)
Mark Shannon
2023-02-08
1
-4/+5
*
gh-99537: Use Py_SETREF() function in C code (#99657)
Victor Stinner
2022-11-22
1
-5/+2
*
gh-99103: Normalize specialized traceback anchors against the current line (G...
Batuhan Taskaya
2022-11-12
1
-2/+7
*
GH-96421: Insert shim frame on entry to interpreter (GH-96319)
Mark Shannon
2022-11-10
1
-0/+9
*
gh-99300: Use Py_NewRef() in Python/ directory (#99317)
Victor Stinner
2022-11-10
1
-10/+5
*
gh-93883: elide traceback indicators when possible (#93994)
John Belmonte
2022-07-11
1
-4/+14
*
gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)
Victor Stinner
2022-06-19
1
-1/+2
*
gh-92536: PEP 623: Remove wstr and legacy APIs from Unicode (GH-92537)
Inada Naoki
2022-05-12
1
-12/+2
*
bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)
Brandt Bucher
2022-04-07
1
-3/+3
*
bpo-35134: Remove the Include/code.h header file (GH-32385)
Victor Stinner
2022-04-07
1
-1/+0
*
bpo-47164: Add _PyCFunction_CAST() macro (GH-32192)
Victor Stinner
2022-03-31
1
-1/+1
*
bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)
Victor Stinner
2022-03-31
1
-6/+6
*
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Victor Stinner
2022-02-25
1
-2/+2
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-12/+14
*
bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...
Kumar Aditya
2021-12-12
1
-1/+1
*
bpo-45635: standardize error handling in traceback.c (GH-29905)
Irit Katriel
2021-12-07
1
-66/+104
*
bpo-45831: _Py_DumpASCII() uses a single write() call if possible (GH-29596)
Victor Stinner
2021-11-17
1
-0/+22
*
bpo-45292: [PEP 654] Update traceback display code to work with exception gro...
Irit Katriel
2021-11-05
1
-25/+93
*
bpo-45637: Store the frame pointer in the cframe (GH-29267)
Mark Shannon
2021-10-28
1
-1/+1
*
bpo-45434: Mark the PyTokenizer C API as private (GH-28924)
Victor Stinner
2021-10-13
1
-2/+2
*
bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)
Victor Stinner
2021-10-13
1
-2/+3
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
1
-5/+8
*
bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...
Serhiy Storchaka
2021-10-03
1
-2/+2
*
bpo-1514420: Do not attempt to open files with names in <>s when formatting a...
Irit Katriel
2021-09-20
1
-0/+9
*
bpo-45061: Enhance faulthandler traceback wit no Python frame (GH-28090)
Victor Stinner
2021-08-31
1
-1/+1
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
1
-19/+10
*
bpo-43950: support some multi-line expressions for PEP 657 (GH-27339)
Batuhan Taskaya
2021-07-25
1
-9/+28
*
bpo-43950: check against the raw string, not the pyobject (GH-27337)
Batuhan Taskaya
2021-07-24
1
-1/+1
*
bpo-43950: ensure source_line is present when specialising the traceback (GH-...
Batuhan Taskaya
2021-07-24
1
-2/+2
*
bpo-43950: Distinguish errors happening on character offset decoding (GH-27217)
Batuhan Taskaya
2021-07-20
1
-0/+10
[next]