]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added missing names to __all__.
authorRaymond Hettinger <python@rcn.com>
Wed, 30 Oct 2002 06:33:33 +0000 (06:33 +0000)
committerRaymond Hettinger <python@rcn.com>
Wed, 30 Oct 2002 06:33:33 +0000 (06:33 +0000)
Lib/difflib.py

index a2689f406f2ede83bce18ebbbc580c282b772c90..97ced5f88ee922ea7c098b68a756812e9848860b 100644 (file)
@@ -22,7 +22,7 @@ Class Differ:
 """
 
 __all__ = ['get_close_matches', 'ndiff', 'restore', 'SequenceMatcher',
-           'Differ']
+           'Differ', 'IS_CHARACTER_JUNK', 'IS_LINE_JUNK']
 
 class SequenceMatcher: