]> granicus.if.org Git - python/commitdiff
SF patch #765238: fix fnmatch.__all__
authorRaymond Hettinger <python@rcn.com>
Sun, 13 Jul 2003 16:06:26 +0000 (16:06 +0000)
committerRaymond Hettinger <python@rcn.com>
Sun, 13 Jul 2003 16:06:26 +0000 (16:06 +0000)
(Contributed by George Yoshida.)

Lib/fnmatch.py

index 0d3d92c57125108c9c069b5f8757026c47c1418e..3bf2463913eb221cef1e4b8220b659b75ba5ffb4 100644 (file)
@@ -12,7 +12,7 @@ corresponding to PATTERN.  (It does not compile it.)
 
 import re
 
-__all__ = ["fnmatch","fnmatchcase","translate"]
+__all__ = ["filter", "fnmatch","fnmatchcase","translate"]
 
 _cache = {}