diff options
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 41d099f..2f42424 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -2094,6 +2094,15 @@ reading directly from dictionaries and strings. (All changes contributed by Ćukasz Langa.) +difflib +------- + +:class:`difflib.SequenceMatcher` has a new parameter in its constructor, +*autojunk*, that allows the user to turn off the automatic junk heuristic the +class uses in its algorithm. Additionally, two new attributes were exposed +to users - *bjunk* and *bpopular*, allowing better understanding of the +heuristics used by the class. + urllib.parse ------------ |