summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-30 18:46:38 (GMT)
committerGeorg Brandl <georg@python.org>2010-07-30 18:46:38 (GMT)
commit0a9c3e91dc50ce22a48ff7364a6c297ffb91c19a (patch)
treecfbc1e378c95a70e7d07167ae0c985572a524ad4 /Misc/NEWS
parentcdf66a9a7c6fe761353058d6d8eb3695ac567722 (diff)
downloadcpython-0a9c3e91dc50ce22a48ff7364a6c297ffb91c19a.zip
cpython-0a9c3e91dc50ce22a48ff7364a6c297ffb91c19a.tar.gz
cpython-0a9c3e91dc50ce22a48ff7364a6c297ffb91c19a.tar.bz2
Show the traceback line numbers as well as the current line numbers if an exception is being debugged. Courtesy of pdb++ by Antonio Cuni. Also document -> and >> markers for "list".
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3955ab1..e433dd8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -475,6 +475,10 @@ C-API
Library
-------
+- For traceback debugging, the pdb listing now also shows the locations
+ where the exception was originally (re)raised, if it differs from the
+ last line executed (e.g. in case of finally clauses).
+
- The pdb command "source" has been added. It displays the source
code for a given object, if possible.