diff options
author | 2014-06-21 11:27:36 -0700 | |
---|---|---|
committer | 2014-06-21 11:27:36 -0700 | |
commit | 4575010943c7a6013fad39a9c31e07e3c498a3ce (patch) | |
tree | 15f224cdbcca568e0be6d6fed374e126638049e9 /Misc/NEWS | |
parent | Fix test_pydoc failure introduced by e89c39125892. Patch by Berker Peksag. (diff) | |
download | cpython-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/NEWS | 4 |
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. |