From 025a9f947af1b16af1e4ebb31314eb33030a66aa Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 30 Oct 2002 06:33:33 +0000 Subject: [PATCH] Added missing names to __all__. --- Lib/difflib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/difflib.py b/Lib/difflib.py index a2689f406f2e..97ced5f88ee9 100644 --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -22,7 +22,7 @@ Class Differ: """ __all__ = ['get_close_matches', 'ndiff', 'restore', 'SequenceMatcher', - 'Differ'] + 'Differ', 'IS_CHARACTER_JUNK', 'IS_LINE_JUNK'] class SequenceMatcher: -- 2.47.3