diff options
author | Raymond Hettinger <python@rcn.com> | 2002-10-30 06:09:58 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-10-30 06:09:58 (GMT) |
commit | 39f02f98f56de9cccb72398021e0cd9bf164bc65 (patch) | |
tree | d0da2421e372fd133f8f8e10ebb759c59951986a | |
parent | 2b9bfb33ffd780c5219186ef86904d7c9cfb8a8a (diff) | |
download | cpython-39f02f98f56de9cccb72398021e0cd9bf164bc65.zip cpython-39f02f98f56de9cccb72398021e0cd9bf164bc65.tar.gz cpython-39f02f98f56de9cccb72398021e0cd9bf164bc65.tar.bz2 |
Added missing names to __all__.
-rw-r--r-- | Lib/difflib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/difflib.py b/Lib/difflib.py index 0637cff..b09348f 100644 --- a/Lib/difflib.py +++ b/Lib/difflib.py @@ -20,7 +20,7 @@ Class Differ: """ __all__ = ['get_close_matches', 'ndiff', 'restore', 'SequenceMatcher', - 'Differ'] + 'Differ','IS_CHARACTER_JUNK', 'IS_LINE_JUNK'] class SequenceMatcher: |