summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-07-13 16:06:26 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-07-13 16:06:26 (GMT)
commit4a4296ec2926dd65fe4aeb4a177445606e19ffce (patch)
tree8cfc766d4ede5d330bb0550abab4f4e4b6782d43
parentae5c37b7b315ff11447edb951a253fe472796d47 (diff)
downloadcpython-4a4296ec2926dd65fe4aeb4a177445606e19ffce.zip
cpython-4a4296ec2926dd65fe4aeb4a177445606e19ffce.tar.gz
cpython-4a4296ec2926dd65fe4aeb4a177445606e19ffce.tar.bz2
SF patch #765238: fix fnmatch.__all__
(Contributed by George Yoshida.)
-rw-r--r--Lib/fnmatch.py2
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 = {}