summaryrefslogtreecommitdiffstats
path: root/Lib/difflib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/difflib.py')
-rw-r--r--Lib/difflib.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/difflib.py b/Lib/difflib.py
index 63b42e9..7498e6f 100644
--- a/Lib/difflib.py
+++ b/Lib/difflib.py
@@ -34,6 +34,7 @@ __all__ = ['get_close_matches', 'ndiff', 'restore', 'SequenceMatcher',
import heapq
from collections import namedtuple as _namedtuple
+from functools import reduce
Match = _namedtuple('Match', 'a b size')