#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.
diff --git a/Misc/NEWS b/Misc/NEWS
index b8d3a36..c72107a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -475,6 +475,10 @@
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.