summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-30 17:04:28 (GMT)
committerGeorg Brandl <georg@python.org>2010-07-30 17:04:28 (GMT)
commite59ca2afe3a84c7262add278d36a0f890ca379f2 (patch)
tree8db088814f9f9cfb4c088854582e54a60deae1aa /Misc
parent0d08962659faf137927f95233e3a7d0480325131 (diff)
downloadcpython-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/ACKS1
-rw-r--r--Misc/NEWS9
2 files changed, 10 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a94318b..3c186b4 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -180,6 +180,7 @@ Drew Csillag
Joaquin Cuenca Abela
John Cugini
Tom Culliton
+Antonio Cuni
Brian Curtin
Lisandro Dalcin
Andrew Dalke
diff --git a/Misc/NEWS b/Misc/NEWS
index 65346fc..ef7433b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.