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
*
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
*
bpo-43950: make BinOp specializations more reliable (GH-27126)
Batuhan Taskaya
2021-07-15
1
-1/+1
*
bpo-43950: Specialize tracebacks for subscripts/binary ops (GH-27037)
Batuhan Taskaya
2021-07-12
1
-41/+225
*
bpo-43950: Print columns in tracebacks (PEP 657) (GH-26958)
Ammar Askar
2021-07-04
1
-6/+67
*
bpo-44466: Faulthandler now detects the GC (GH-26823)
Victor Stinner
2021-06-21
1
-0/+4
*
bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)
Steve Dower
2021-04-30
1
-1/+1
*
bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)
Ryan Hileman
2021-04-29
1
-1/+1
*
bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...
Mark Shannon
2021-04-01
1
-3/+2
*
bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)
Victor Stinner
2021-01-19
1
-3/+3
*
bpo-42923: Py_FatalError() avoids fprintf() (GH-24242)
Victor Stinner
2021-01-18
1
-7/+4
*
bpo-26564: fix obsolete comment in traceback.c (GH-23819)
Irit Katriel
2020-12-17
1
-1/+2
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-2/+2
*
bpo-40421: Add PyFrame_GetBack() function (GH-19765)
Victor Stinner
2020-04-29
1
-5/+14
*
bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773)
Victor Stinner
2020-04-28
1
-7/+6
*
bpo-40421: Add PyFrame_GetCode() function (GH-19757)
Victor Stinner
2020-04-28
1
-9/+8
*
bpo-40268: Remove unused osdefs.h includes (GH-19532)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-1/+0
*
bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data....
Serhiy Storchaka
2020-04-11
1
-2/+2
*
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)
Victor Stinner
2020-03-20
1
-1/+1
*
bpo-38070: _Py_DumpTraceback() writes <no Python frame> (GH-16244)
Victor Stinner
2019-09-17
1
-5/+8
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-2/+2
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-2/+2
*
bpo-36829: PyErr_WriteUnraisable() normalizes exception (GH-13507)
Victor Stinner
2019-05-22
1
-2/+13
*
bpo-35983: skip trashcan for subclasses (GH-11841)
Jeroen Demeyer
2019-05-10
1
-2/+2
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-1/+2
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
bpo-34588: Fix an off-by-one error in traceback formatting. (GH-9077)
Benjamin Peterson
2018-09-10
1
-14/+16
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-1/+1
*
bpo-30579: Allow TracebackType creation and tb_next mutation from Python (GH-...
Nathaniel J. Smith
2018-01-07
1
-26/+123
*
bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print())....
Serhiy Storchaka
2017-11-15
1
-51/+51
*
bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)
Masayuki Yamamoto
2017-10-06
1
-1/+1
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+1
*
bpo-31370: Remove support for threads-less builds (#3385)
Antoine Pitrou
2017-09-07
1
-16/+0
*
bpo-6532: Make the thread id an unsigned integer. (#781)
Serhiy Storchaka
2017-03-23
1
-1/+1
*
Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception
Serhiy Storchaka
2016-10-18
1
-20/+26
|
\
|
*
Issue #23782: Fixed possible memory leak in _PyTraceback_Add() and exception
Serhiy Storchaka
2016-10-18
1
-20/+26
*
|
Avoid calling functions with an empty string as format string
Victor Stinner
2016-09-06
1
-2/+2
*
|
Fix reference leak in tb_printinternal()
Victor Stinner
2016-08-20
1
-0/+2
*
|
Issue #26823: Abbreviate recursive tracebacks
Nick Coghlan
2016-08-15
1
-4/+32
*
|
Issue #27336: Fix compilation failures --without-threads
Berker Peksag
2016-06-17
1
-1/+1
*
|
Rework _Py_DumpASCII() to make Coverity happy
Victor Stinner
2016-03-23
1
-8/+8
*
|
Issue #23848: Expose _Py_DumpHexadecimal()
Victor Stinner
2016-03-23
1
-8/+9
*
|
faulthandler now works in non-Python threads
Victor Stinner
2016-03-16
1
-2/+47
[next]