summaryrefslogtreecommitdiff
path: root/Lib/glob.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-01-20 23:34:12 +0000
committerSkip Montanaro <skip@pobox.com>2001-01-20 23:34:12 +0000
commiteccd02a40d0921fc2953213e71da8a3a79d00e17 (patch)
tree7f5a2cb83402b600e73e3cdbb71f7181aaa96138 /Lib/glob.py
parente78b92a062153ace94989e79d36e04e0997d1710 (diff)
downloadcpython-git-eccd02a40d0921fc2953213e71da8a3a79d00e17.tar.gz
more __all__ updates
Diffstat (limited to 'Lib/glob.py')
-rw-r--r--Lib/glob.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/glob.py b/Lib/glob.py
index 2c214553d3..eeb6bdd646 100644
--- a/Lib/glob.py
+++ b/Lib/glob.py
@@ -4,6 +4,7 @@ import os
import fnmatch
import re
+__all__ = ["glob"]
def glob(pathname):
"""Return a list of paths matching a pathname pattern.