diff options
author | Raymond Hettinger <python@rcn.com> | 2003-07-13 16:06:26 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-07-13 16:06:26 (GMT) |
commit | 4a4296ec2926dd65fe4aeb4a177445606e19ffce (patch) | |
tree | 8cfc766d4ede5d330bb0550abab4f4e4b6782d43 /Lib/fnmatch.py | |
parent | ae5c37b7b315ff11447edb951a253fe472796d47 (diff) | |
download | cpython-4a4296ec2926dd65fe4aeb4a177445606e19ffce.zip cpython-4a4296ec2926dd65fe4aeb4a177445606e19ffce.tar.gz cpython-4a4296ec2926dd65fe4aeb4a177445606e19ffce.tar.bz2 |
SF patch #765238: fix fnmatch.__all__
(Contributed by George Yoshida.)
Diffstat (limited to 'Lib/fnmatch.py')
-rw-r--r-- | Lib/fnmatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/fnmatch.py b/Lib/fnmatch.py index 0d3d92c..3bf2463 100644 --- a/Lib/fnmatch.py +++ b/Lib/fnmatch.py @@ -12,7 +12,7 @@ corresponding to PATTERN. (It does not compile it.) import re -__all__ = ["fnmatch","fnmatchcase","translate"] +__all__ = ["filter", "fnmatch","fnmatchcase","translate"] _cache = {} |