diff options
author | Skip Montanaro <skip@pobox.com> | 2001-02-12 02:00:42 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-02-12 02:00:42 (GMT) |
commit | c62c81e013fbc9a726493870c3624b60ae63a757 (patch) | |
tree | 877ed808aa0af2b40e4f4385f1d8d28c1019fb05 /Lib/posixpath.py | |
parent | 81b6ae7ef71c2701a75773674e96829415e1a1d8 (diff) | |
download | cpython-c62c81e013fbc9a726493870c3624b60ae63a757.zip cpython-c62c81e013fbc9a726493870c3624b60ae63a757.tar.gz cpython-c62c81e013fbc9a726493870c3624b60ae63a757.tar.bz2 |
__all__ for several more modules
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r-- | Lib/posixpath.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 2d18f5d..223d6ba 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -13,6 +13,11 @@ for manipulation of the pathname component of URLs. 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", + "samefile","sameopenfile","samestat"] # Normalize the case of a pathname. Trivial in Posix, string.lower on Mac. # On MS-DOS this may also turn slashes into backslashes; however, other |