summaryrefslogtreecommitdiffstats
path: root/Lib/ntpath.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-08-22 18:02:59 (GMT)
committerGeorg Brandl <georg@python.org>2005-08-22 18:02:59 (GMT)
commitf0de6a18bb7b016a016dd58c49364ca63b965724 (patch)
tree81d0cf3f1a697d5d34a61924d834da789d18b2b3 /Lib/ntpath.py
parentf21a5f773964d34c7b6deb7e3d753fae2b9c70e2 (diff)
downloadcpython-f0de6a18bb7b016a016dd58c49364ca63b965724.zip
cpython-f0de6a18bb7b016a016dd58c49364ca63b965724.tar.gz
cpython-f0de6a18bb7b016a016dd58c49364ca63b965724.tar.bz2
Bug #1266283: lexists() is not exported from os.path
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r--Lib/ntpath.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index 35f266c..5dd5f1a 100644
--- a/Lib/ntpath.py
+++ b/Lib/ntpath.py
@@ -11,10 +11,10 @@ import sys
__all__ = ["normcase","isabs","join","splitdrive","split","splitext",
"basename","dirname","commonprefix","getsize","getmtime",
- "getatime","getctime", "islink","exists","isdir","isfile","ismount",
- "walk","expanduser","expandvars","normpath","abspath","splitunc",
- "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
- "devnull","realpath","supports_unicode_filenames"]
+ "getatime","getctime", "islink","exists","lexists","isdir","isfile",
+ "ismount","walk","expanduser","expandvars","normpath","abspath",
+ "splitunc","curdir","pardir","sep","pathsep","defpath","altsep",
+ "extsep","devnull","realpath","supports_unicode_filenames"]
# strings representing various path-related bits and pieces
curdir = '.'