aboutsummaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2014-06-21 11:27:36 -0700
committerRaymond Hettinger <python@rcn.com>2014-06-21 11:27:36 -0700
commit4575010943c7a6013fad39a9c31e07e3c498a3ce (patch)
tree15f224cdbcca568e0be6d6fed374e126638049e9 /Misc/NEWS
parentFix test_pydoc failure introduced by e89c39125892. Patch by Berker Peksag. (diff)
downloadcpython-4575010943c7a6013fad39a9c31e07e3c498a3ce.tar.gz
cpython-4575010943c7a6013fad39a9c31e07e3c498a3ce.tar.bz2
cpython-4575010943c7a6013fad39a9c31e07e3c498a3ce.zip
Issue 21635: Fix caching in difflib.SequenceMatcher.get_matching_blocks().
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 6cd1bd245af..664eba74aff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,10 @@ Library
- Issue #21491: SocketServer: Fix a race condition in child processes reaping.
+- Issue #21635: The difflib SequenceMatcher.get_matching_blocks() method
+ cache didn't match the actual result. The former was a list of tuples
+ and the latter was a list of named tuples.
+
- Issue #21722: The distutils "upload" command now exits with a non-zero
return code when uploading fails. Patch by Martin Dengler.