diff options
author | Georg Brandl <georg@python.org> | 2010-07-30 18:46:38 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-30 18:46:38 (GMT) |
commit | 0a9c3e91dc50ce22a48ff7364a6c297ffb91c19a (patch) | |
tree | cfbc1e378c95a70e7d07167ae0c985572a524ad4 /Misc/NEWS | |
parent | cdf66a9a7c6fe761353058d6d8eb3695ac567722 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |