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
f8e85b88
Commit
f8e85b88
authored
Feb 22, 2014
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whatsnew: os.path.ismount recognizes volumes mounted below root.
parent
14d2b802
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
Doc/library/os.path.rst
Doc/library/os.path.rst
+7
-1
Doc/whatsnew/3.4.rst
Doc/whatsnew/3.4.rst
+3
-0
No files found.
Doc/library/os.path.rst
View file @
f8e85b88
...
...
@@ -194,10 +194,16 @@ the :mod:`glob` module.)
.. function:: ismount(path)
Return ``True`` if pathname *path* is a :dfn:`mount point`: a point in a file
system where a different file system has been mounted.
T
he function checks
system where a different file system has been mounted.
On POSIX, t
he function checks
whether *path*'s parent, :file:`path/..`, is on a different device than *path*,
or whether :file:`path/..` and *path* point to the same i-node on the same
device --- this should detect mount points for all Unix and POSIX variants.
On Windows, a drive letter root and a share UNC are always mount
points, and for any other path ``GetVolumePathName`` is called to see if it
is different from the input path.
.. versionadded:: 3.4
Support for detecting non-root mount points on Windows.
.. function:: join(path1[, path2[, ...]])
...
...
Doc/whatsnew/3.4.rst
View file @
f8e85b88
...
...
@@ -960,6 +960,9 @@ Chaudhari, Victor Stinner, and Charles-François Natali in :issue:`17914`.)
:func:`os.path.samefile` implementation is now shared between Unix and
Windows). (Contributed by Brian Curtin in :issue:`11939`.)
:func:`os.path.ismount` now recognizes volumes mounted below a drive
root on Windows. (Contributed by Tim Golden in :issue:`9035`.)
pdb
---
...
...
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