diff options
author | Skip Montanaro <skip@pobox.com> | 2001-01-20 23:34:12 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-01-20 23:34:12 +0000 |
commit | eccd02a40d0921fc2953213e71da8a3a79d00e17 (patch) | |
tree | 7f5a2cb83402b600e73e3cdbb71f7181aaa96138 /Lib/fnmatch.py | |
parent | e78b92a062153ace94989e79d36e04e0997d1710 (diff) | |
download | cpython-git-eccd02a40d0921fc2953213e71da8a3a79d00e17.tar.gz |
more __all__ updates
Diffstat (limited to 'Lib/fnmatch.py')
-rw-r--r-- | Lib/fnmatch.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/fnmatch.py b/Lib/fnmatch.py index a4508bb312..c40f50035d 100644 --- a/Lib/fnmatch.py +++ b/Lib/fnmatch.py @@ -12,6 +12,8 @@ corresponding to PATTERN. (It does not compile it.) import re +__all__ = ["fnmatch","fnmatchcase","translate"] + _cache = {} def fnmatch(name, pat): |