From c62c81e013fbc9a726493870c3624b60ae63a757 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Mon, 12 Feb 2001 02:00:42 +0000 Subject: __all__ for several more modules --- Lib/posixpath.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Lib/posixpath.py') diff --git a/Lib/posixpath.py b/Lib/posixpath.py index 2d18f5d47a..223d6ba322 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 -- cgit v1.2.1