diff options
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 |