diff options
author | Skip Montanaro <skip@pobox.com> | 2001-02-06 01:07:02 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-02-06 01:07:02 (GMT) |
commit | 269b83bc05452f4f54fa9df5a76608f88da544fe (patch) | |
tree | 3463eb160b6a7a04a8a1a9aebc79075d9390f91e /Lib/ntpath.py | |
parent | 46fa39ab1d1e2f14c1b44c5e81c34c5f6cfb9a58 (diff) | |
download | cpython-269b83bc05452f4f54fa9df5a76608f88da544fe.zip cpython-269b83bc05452f4f54fa9df5a76608f88da544fe.tar.gz cpython-269b83bc05452f4f54fa9df5a76608f88da544fe.tar.bz2 |
added several more __all__ lists
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 571a7d0..63860ce7 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -8,6 +8,10 @@ module as os.path. import os import stat +__all__ = ["normcase","isabs","join","splitdrive","split","splitext", + "basename","dirname","commonprefix","getsize","getmtime", + "getatime","islink","exists","isdir","isfile","ismount", + "walk","expanduser","expandvars","normpath","abspath","splitunc"] # Normalize the case of a pathname and map slashes to backslashes. # Other normalizations (such as optimizing '../' away) are not done |