summaryrefslogtreecommitdiffstats
path: root/Lib/pathlib.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-10-30 22:57:57 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-10-30 22:57:57 (GMT)
commitd9b8dc272aed9d6d69ea51107ba0246e767f33d2 (patch)
tree4f23836338b52c883a3b124b5007d0383bde8c78 /Lib/pathlib.py
parent4659cc075667f6a38f3f69c9838585c71ec44d53 (diff)
parent2b2852b1b4d5bfd006beb202c520c53db8be2901 (diff)
downloadcpython-d9b8dc272aed9d6d69ea51107ba0246e767f33d2.zip
cpython-d9b8dc272aed9d6d69ea51107ba0246e767f33d2.tar.gz
cpython-d9b8dc272aed9d6d69ea51107ba0246e767f33d2.tar.bz2
Merge heads
Diffstat (limited to 'Lib/pathlib.py')
-rw-r--r--Lib/pathlib.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/Lib/pathlib.py b/Lib/pathlib.py
index 48b7031..f5598c5 100644
--- a/Lib/pathlib.py
+++ b/Lib/pathlib.py
@@ -8,7 +8,7 @@ import re
import sys
from collections import Sequence
from contextlib import contextmanager
-from errno import EINVAL, ENOENT
+from errno import EINVAL, ENOENT, ENOTDIR
from operator import attrgetter
from stat import S_ISDIR, S_ISLNK, S_ISREG, S_ISSOCK, S_ISBLK, S_ISCHR, S_ISFIFO
from urllib.parse import quote_from_bytes as urlquote_from_bytes
@@ -1187,7 +1187,7 @@ class Path(PurePath):
try:
self.stat()
except OSError as e:
- if e.errno != ENOENT:
+ if e.errno not in (ENOENT, ENOTDIR):
raise
return False
return True
@@ -1199,7 +1199,7 @@ class Path(PurePath):
try:
return S_ISDIR(self.stat().st_mode)
except OSError as e:
- if e.errno != ENOENT:
+ if e.errno not in (ENOENT, ENOTDIR):
raise
# Path doesn't exist or is a broken symlink
# (see https://bitbucket.org/pitrou/pathlib/issue/12/)
@@ -1213,7 +1213,7 @@ class Path(PurePath):
try:
return S_ISREG(self.stat().st_mode)
except OSError as e:
- if e.errno != ENOENT:
+ if e.errno not in (ENOENT, ENOTDIR):
raise
# Path doesn't exist or is a broken symlink
# (see https://bitbucket.org/pitrou/pathlib/issue/12/)
@@ -1226,7 +1226,7 @@ class Path(PurePath):
try:
return S_ISLNK(self.lstat().st_mode)
except OSError as e:
- if e.errno != ENOENT:
+ if e.errno not in (ENOENT, ENOTDIR):
raise
# Path doesn't exist
return False
@@ -1238,7 +1238,7 @@ class Path(PurePath):
try:
return S_ISBLK(self.stat().st_mode)
except OSError as e:
- if e.errno != ENOENT:
+ if e.errno not in (ENOENT, ENOTDIR):
raise
# Path doesn't exist or is a broken symlink
# (see https://bitbucket.org/pitrou/pathlib/issue/12/)
@@ -1251,7 +1251,7 @@ class Path(PurePath):
try:
return S_ISCHR(self.stat().st_mode)
except OSError as e:
- if e.errno != ENOENT:
+ if e.errno not in (ENOENT, ENOTDIR):
raise
# Path doesn't exist or is a broken symlink
# (see https://bitbucket.org/pitrou/pathlib/issue/12/)
@@ -1264,7 +1264,7 @@ class Path(PurePath):
try:
return S_ISFIFO(self.stat().st_mode)
except OSError as e:
- if e.errno != ENOENT:
+ if e.errno not in (ENOENT, ENOTDIR):
raise
# Path doesn't exist or is a broken symlink
# (see https://bitbucket.org/pitrou/pathlib/issue/12/)
@@ -1277,7 +1277,7 @@ class Path(PurePath):
try:
return S_ISSOCK(self.stat().st_mode)
except OSError as e:
- if e.errno != ENOENT:
+ if e.errno not in (ENOENT, ENOTDIR):
raise
# Path doesn't exist or is a broken symlink
# (see https://bitbucket.org/pitrou/pathlib/issue/12/)