diff options
author | Georg Brandl <georg@python.org> | 2005-08-22 18:02:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-08-22 18:02:59 (GMT) |
commit | f0de6a18bb7b016a016dd58c49364ca63b965724 (patch) | |
tree | 81d0cf3f1a697d5d34a61924d834da789d18b2b3 /Lib/macpath.py | |
parent | f21a5f773964d34c7b6deb7e3d753fae2b9c70e2 (diff) | |
download | cpython-f0de6a18bb7b016a016dd58c49364ca63b965724.zip cpython-f0de6a18bb7b016a016dd58c49364ca63b965724.tar.gz cpython-f0de6a18bb7b016a016dd58c49364ca63b965724.tar.bz2 |
Bug #1266283: lexists() is not exported from os.path
Diffstat (limited to 'Lib/macpath.py')
-rw-r--r-- | Lib/macpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/macpath.py b/Lib/macpath.py index dc7f753..f93ceb1 100644 --- a/Lib/macpath.py +++ b/Lib/macpath.py @@ -5,7 +5,7 @@ from stat import * __all__ = ["normcase","isabs","join","splitdrive","split","splitext", "basename","dirname","commonprefix","getsize","getmtime", - "getatime","getctime", "islink","exists","isdir","isfile", + "getatime","getctime", "islink","exists","lexists","isdir","isfile", "walk","expanduser","expandvars","normpath","abspath", "curdir","pardir","sep","pathsep","defpath","altsep","extsep", "devnull","realpath","supports_unicode_filenames"] |