summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-30 08:29:39 (GMT)
committerGeorg Brandl <georg@python.org>2010-07-30 08:29:39 (GMT)
commite023091815e4946e42c1af102be1f258b2f47cb8 (patch)
treefe5b2c9d398005733710fea747f6658cd21907cf /Misc/NEWS
parent1e30bd3753e7b08dce13ff1e18ac1ae5c397fcea (diff)
downloadcpython-e023091815e4946e42c1af102be1f258b2f47cb8.zip
cpython-e023091815e4946e42c1af102be1f258b2f47cb8.tar.gz
cpython-e023091815e4946e42c1af102be1f258b2f47cb8.tar.bz2
#1437051: allow "continue"/"next"/etc. in .pdbrc, also add pdb -c option to give these commands. This allows to run a script until an exception occurs.
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 b8d3a36..c72107a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -475,6 +475,10 @@ C-API
Library
-------
+- Issue #1437051: For pdb, allow "continue" and related commands in
+ .pdbrc files. Also, add a command-line option "-c" that runs a
+ command as if given in .pdbrc.
+
- Issue #4179: In pdb, allow "list ." as a command to return to the
currently debugged line.