summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-03-11 16:00:20 (GMT)
committerCollin Winter <collinw@gmail.com>2007-03-11 16:00:20 (GMT)
commit2faa9e146681bb4d5ea2b795dfaade35a1d1c2df (patch)
tree08c68c9b392a4b172d90a741f7cfeaf04a622dec /Misc/NEWS
parent890320877658121d9def472ae0d7063b81fc3aed (diff)
downloadcpython-2faa9e146681bb4d5ea2b795dfaade35a1d1c2df.zip
cpython-2faa9e146681bb4d5ea2b795dfaade35a1d1c2df.tar.gz
cpython-2faa9e146681bb4d5ea2b795dfaade35a1d1c2df.tar.bz2
Patch #1192590: Fix pdb's "ignore" and "condition" commands so they trap the IndexError caused by passing in an invalid breakpoint number.
Will backport.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8d93d01..24d7a14 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -158,6 +158,9 @@ Core and builtins
Library
-------
+- Patch #1192590: Fix pdb's "ignore" and "condition" commands so they trap
+ the IndexError caused by passing in an invalid breakpoint number.
+
- Patch #1599845: Add an option to disable the implicit calls to server_bind()
and server_activate() in the constructors for TCPServer, SimpleXMLRPCServer
and DocXMLRPCServer.