summaryrefslogtreecommitdiffstats
path: root/Lib/macpath.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-01-24 06:27:27 (GMT)
committerSkip Montanaro <skip@pobox.com>2001-01-24 06:27:27 (GMT)
commit17ab123cf1f0597e7e257c1ce83a6e87b85ffd7b (patch)
treeff884581a6dc34f7abd0f55d44257e1bc90b1e6a /Lib/macpath.py
parentbbd89b66b1b3c44836f560b60c7a176a6172f148 (diff)
downloadcpython-17ab123cf1f0597e7e257c1ce83a6e87b85ffd7b.zip
cpython-17ab123cf1f0597e7e257c1ce83a6e87b85ffd7b.tar.gz
cpython-17ab123cf1f0597e7e257c1ce83a6e87b85ffd7b.tar.bz2
a few more modules get __all__
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r--Lib/macpath.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py
index bf2660f..197e50f 100644
--- a/Lib/macpath.py
+++ b/Lib/macpath.py
@@ -3,6 +3,10 @@
import os
from stat import *
+__all__ = ["normcase","isabs","join","splitdrive","split","splitext",
+ "basename","dirname","commonprefix","getsize","getmtime",
+ "getatime","islink","exists","isdir","isfile",
+ "walk","expanduser","expandvars","normpath","abspath"]
# Normalize the case of a pathname. Dummy in Posix, but <s>.lower() here.