mirror of https://github.com/python/cpython
Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint.
This commit is contained in:
parent
3b4a5bd9da
commit
12f03ccece
|
@ -245,8 +245,8 @@ def samestat(s1, s2):
|
||||||
def ismount(path):
|
def ismount(path):
|
||||||
"""Test whether a path is a mount point"""
|
"""Test whether a path is a mount point"""
|
||||||
try:
|
try:
|
||||||
s1 = os.stat(path)
|
s1 = os.lstat(path)
|
||||||
s2 = os.stat(join(path, '..'))
|
s2 = os.lstat(join(path, '..'))
|
||||||
except os.error:
|
except os.error:
|
||||||
return False # It doesn't exist -- so not a mount point :-)
|
return False # It doesn't exist -- so not a mount point :-)
|
||||||
dev1 = s1.st_dev
|
dev1 = s1.st_dev
|
||||||
|
|
|
@ -53,6 +53,8 @@ Core and builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint.
|
||||||
|
|
||||||
- Issue #1700: Regular expression inline flags incorrectly handle certain
|
- Issue #1700: Regular expression inline flags incorrectly handle certain
|
||||||
unicode characters.
|
unicode characters.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue