diff options
author | Terry Reedy <tjreedy@udel.edu> | 2010-11-11 23:22:19 (GMT) |
---|---|---|
committer | Terry Reedy <tjreedy@udel.edu> | 2010-11-11 23:22:19 (GMT) |
commit | d2d2ae91c5ea2d226a6aae7afc8c8b05200c4eef (patch) | |
tree | 3d0e6661b6a54c6257786c700b9ba36664642365 /Misc | |
parent | 6c2e0224ffb739a3db3984aa8beb68db3338b3f1 (diff) | |
download | cpython-d2d2ae91c5ea2d226a6aae7afc8c8b05200c4eef.zip cpython-d2d2ae91c5ea2d226a6aae7afc8c8b05200c4eef.tar.gz cpython-d2d2ae91c5ea2d226a6aae7afc8c8b05200c4eef.tar.bz2 |
#2986 Add autojunk parameter to SequenceMatcher to optionally disable 'popular == junk' heuristic.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -213,6 +213,10 @@ Library - Issue #808164: Fixed socket.close to avoid references to globals, to avoid issues when socket.close is called from a __del__ method. +- 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 + - Issue #8797: urllib2 does a retry for Basic Authentication failure instead of falling into recursion. |