From 4a4296ec2926dd65fe4aeb4a177445606e19ffce Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 13 Jul 2003 16:06:26 +0000 Subject: SF patch #765238: fix fnmatch.__all__ (Contributed by George Yoshida.) --- Lib/fnmatch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = {} -- cgit v0.12