From: Raymond Hettinger Date: Sun, 13 Jul 2003 16:06:26 +0000 (+0000) Subject: SF patch #765238: fix fnmatch.__all__ X-Git-Tag: v2.3c1~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a4296ec2926dd65fe4aeb4a177445606e19ffce;p=python SF patch #765238: fix fnmatch.__all__ (Contributed by George Yoshida.) --- diff --git a/Lib/fnmatch.py b/Lib/fnmatch.py index 0d3d92c571..3bf2463913 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 = {}