diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-12-19 12:59:58 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-12-19 12:59:58 (GMT) |
commit | 99cff3f1825e70027b2fa170fdc4723c57723b5d (patch) | |
tree | bc560b22004341028bd0bbe054f3c5ea20488c89 /Misc/NEWS | |
parent | 52aa260387e2de3ddf96cc0006867241cd3d3667 (diff) | |
download | cpython-99cff3f1825e70027b2fa170fdc4723c57723b5d.zip cpython-99cff3f1825e70027b2fa170fdc4723c57723b5d.tar.gz cpython-99cff3f1825e70027b2fa170fdc4723c57723b5d.tar.bz2 |
Issue #13628: python-gdb.py is now able to retrieve more frames in the Python
traceback if Python is optimized.
* delay the lookup of the size_t type, it is not available at startup
* The second argument of the PyFrameObjectPtr constructor is optional, as
done in other constructors
* iter_builtins() and iter_globals() methods of PyFrameObjectPtr returns
an empty tuple instead of None if Python is optimized
* Fix py-bt to handle correctly "optimized" frames
* Frame.get_pyop() tries to get the frame pointer from PyEval_EvalCodeEx()
if the pointer is optimized out in PyEval_EvalFrameEx()
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -404,6 +404,12 @@ Tools/Demos - Issue #10639: reindent.py no longer converts newlines and will raise an error if attempting to convert a file with mixed newlines. +Tools/Demos +----------- + +- Issue #13628: python-gdb.py is now able to retrieve more frames in the Python + traceback if Python is optimized. + Tests ----- |