Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
f0de6a18
Commit
f0de6a18
authored
Aug 22, 2005
by
Georg Brandl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #1266283: lexists() is not exported from os.path
parent
f21a5f77
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
11 deletions
+13
-11
Lib/macpath.py
Lib/macpath.py
+1
-1
Lib/ntpath.py
Lib/ntpath.py
+4
-4
Lib/os2emxpath.py
Lib/os2emxpath.py
+4
-4
Lib/posixpath.py
Lib/posixpath.py
+2
-2
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/macpath.py
View file @
f0de6a18
...
...
@@ -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"
]
...
...
Lib/ntpath.py
View file @
f0de6a18
...
...
@@ -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"
,
"ex
tsep"
,
"devnull"
,
"realpath"
,
"supports_unicode_filenames"
]
"getatime"
,
"getctime"
,
"islink"
,
"exists"
,
"
lexists"
,
"isdir"
,
"isfile
"
,
"
ismount"
,
"walk"
,
"expanduser"
,
"expandvars"
,
"normpath"
,
"abspath
"
,
"
splitunc"
,
"curdir"
,
"pardir"
,
"sep"
,
"pathsep"
,
"defpath"
,
"al
tsep"
,
"
extsep"
,
"
devnull"
,
"realpath"
,
"supports_unicode_filenames"
]
# strings representing various path-related bits and pieces
curdir
=
'.'
...
...
Lib/os2emxpath.py
View file @
f0de6a18
...
...
@@ -10,10 +10,10 @@ import stat
__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"
,
"ex
tsep"
,
"devnull"
,
"realpath"
,
"supports_unicode_filenames"
]
"getatime"
,
"getctime"
,
"islink"
,
"exists"
,
"
lexists"
,
"isdir"
,
"isfile
"
,
"
ismount"
,
"walk"
,
"expanduser"
,
"expandvars"
,
"normpath"
,
"abspath
"
,
"
splitunc"
,
"curdir"
,
"pardir"
,
"sep"
,
"pathsep"
,
"defpath"
,
"al
tsep"
,
"
extsep"
,
"
devnull"
,
"realpath"
,
"supports_unicode_filenames"
]
# strings representing various path-related bits and pieces
curdir
=
'.'
...
...
Lib/posixpath.py
View file @
f0de6a18
...
...
@@ -15,8 +15,8 @@ import stat
__all__
=
[
"normcase"
,
"isabs"
,
"join"
,
"splitdrive"
,
"split"
,
"splitext"
,
"basename"
,
"dirname"
,
"commonprefix"
,
"getsize"
,
"getmtime"
,
"getatime"
,
"getctime"
,
"islink"
,
"exists"
,
"
isdir"
,
"isfile"
,
"ismount
"
,
"walk"
,
"expanduser"
,
"expandvars"
,
"normpath"
,
"abspath"
,
"getatime"
,
"getctime"
,
"islink"
,
"exists"
,
"
lexists"
,
"isdir"
,
"isfile
"
,
"
ismount"
,
"
walk"
,
"expanduser"
,
"expandvars"
,
"normpath"
,
"abspath"
,
"samefile"
,
"sameopenfile"
,
"samestat"
,
"curdir"
,
"pardir"
,
"sep"
,
"pathsep"
,
"defpath"
,
"altsep"
,
"extsep"
,
"devnull"
,
"realpath"
,
"supports_unicode_filenames"
]
...
...
Misc/NEWS
View file @
f0de6a18
...
...
@@ -1692,6 +1692,8 @@ Extension modules
Library
-------
- Bug #1266283: The new function "
lexists
" is now in os.path.__all__.
- Bug #981530: Fix UnboundLocalError in shutil.rmtree(). This affects
the documented behavior: the function passed to the onerror()
handler can now also be os.listdir.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment