File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 26
26
For producing HTML side by side comparison with change highlights.
27
27
"""
28
28
29
+ # fdifflib is a derivative of the Python v3.7.4 difflib.py library.
30
+ # It includes the following modifications to the upstream source file:
31
+ #
32
+ # - change the `SequenceMatcher.__chain_b` autojunk heuristic to make
33
+ # it adapt the "popular" string definition to file size. These
34
+ # definitions were made more permissive (i.e., includes more
35
+ # strings as "popular" for larger file sizes. This leads to a
36
+ # significant performance increase in the setting of text diffs
37
+ # of TTX dumps of font binaries that tend to be in the 10k-100k
38
+ # lines of text
39
+ # - black tool source formatting
40
+
29
41
__all__ = [
30
42
"get_close_matches" ,
31
43
"ndiff" ,
You can’t perform that action at this time.
0 commit comments