summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-12-19 12:42:24 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-12-19 12:42:24 (GMT)
commitd208416a4033c1d8e10ee70e1aa74e6d3108c7d6 (patch)
treedf655dc8ca5aacb34c84b4baa3d155a57bc06997 /Misc/NEWS
parent78ed83da46b4f87e6e04a15f4d330ccb28274d03 (diff)
downloadcpython-d208416a4033c1d8e10ee70e1aa74e6d3108c7d6.zip
cpython-d208416a4033c1d8e10ee70e1aa74e6d3108c7d6.tar.gz
cpython-d208416a4033c1d8e10ee70e1aa74e6d3108c7d6.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 and py-bt-full 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/NEWS8
1 files changed, 7 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 346326b..956146f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -97,7 +97,7 @@ Core and Builtins
Library
-------
-- Issue #11813: Fix inspect.getattr_static for modules. Patch by Andreas
+- Issue #11813: Fix inspect.getattr_static for modules. Patch by Andreas
Stührk.
- Issue #7502: Fix equality comparison for DocTestCase instances. Patch by
@@ -314,6 +314,12 @@ Build
- Issue #13326: Clean __pycache__ directories correctly on OpenBSD.
+Tools/Demos
+-----------
+
+- Issue #13628: python-gdb.py is now able to retrieve more frames in the Python
+ traceback if Python is optimized.
+
Tests
-----