diff options
author | Georg Brandl <georg@python.org> | 2010-07-30 08:29:39 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-07-30 08:29:39 (GMT) |
commit | e023091815e4946e42c1af102be1f258b2f47cb8 (patch) | |
tree | fe5b2c9d398005733710fea747f6658cd21907cf /Misc/NEWS | |
parent | 1e30bd3753e7b08dce13ff1e18ac1ae5c397fcea (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |