diff options
author | Georg Brandl <georg@python.org> | 2010-07-30 17:04:28 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-30 17:04:28 (GMT) |
commit | e59ca2afe3a84c7262add278d36a0f890ca379f2 (patch) | |
tree | 8db088814f9f9cfb4c088854582e54a60deae1aa /Misc | |
parent | 0d08962659faf137927f95233e3a7d0480325131 (diff) | |
download | cpython-e59ca2afe3a84c7262add278d36a0f890ca379f2.zip cpython-e59ca2afe3a84c7262add278d36a0f890ca379f2.tar.gz cpython-e59ca2afe3a84c7262add278d36a0f890ca379f2.tar.bz2 |
Add "longlist" and "source" commands, ideas borrowed from pdb++ by Antonio Cuni.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 9 |
2 files changed, 10 insertions, 0 deletions
@@ -180,6 +180,7 @@ Drew Csillag Joaquin Cuenca Abela John Cugini Tom Culliton +Antonio Cuni Brian Curtin Lisandro Dalcin Andrew Dalke @@ -475,6 +475,15 @@ C-API Library ------- +- The pdb command "source" has been added. It displays the source + code for a given object, if possible. + +- The pdb command "longlist" has been added. It displays the whole + source code for the current function. + +- Issue #1503502: Make pdb.Pdb easier to subclass by putting message + and error output into methods. + - Issue #809887: Make the output of pdb's breakpoint deletions more consistent; emit a message when a breakpoint is enabled or disabled. |