summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-11-29 11:54:17 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-11-29 11:54:17 (GMT)
commit6f1070485f54469d7bf48df8306e398609340a07 (patch)
tree08eda3c912bb78c17b0655e140161da0213126d7 /Misc/NEWS
parentead22227cce112457b6beba8b008699ea4a3a084 (diff)
downloadcpython-6f1070485f54469d7bf48df8306e398609340a07.zip
cpython-6f1070485f54469d7bf48df8306e398609340a07.tar.gz
cpython-6f1070485f54469d7bf48df8306e398609340a07.tar.bz2
Fix #10561 - Fix pdb behavior. Delete the breakpoints by breakpoint number.
Handle multiple breakpoints at same line. Update docs/test. Patch by Xavier de Gaye.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 79171a5..71cbc32 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,8 @@ Library
- Issue #10242: Fixed implementation of unittest.ItemsEqual and gave it
a new more informative name, unittest.CountEqual.
+- Issue #10561: In pdb, clear the breakpoints by the breakpoint number.
+
- Issue #2986: difflib.SequenceMatcher gets a new parameter, autojunk, which
can be set to False to turn off the previously undocumented 'popularity'
heuristic. Patch by Terry Reedy and Eli Bendersky.