Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
06f6fbff
Kaydet (Commit)
06f6fbff
authored
Tem 22, 2013
tarafından
Brian Curtin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix #18530. Remove extra stat call from posixpath.ismount
üst
7b3902a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
8 deletions
+17
-8
posixpath.py
Lib/posixpath.py
+14
-8
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/posixpath.py
Dosyayı görüntüle @
06f6fbff
...
...
@@ -182,18 +182,24 @@ def lexists(path):
def
ismount
(
path
):
"""Test whether a path is a mount point"""
if
islink
(
path
):
# A symlink can never be a mount point
return
False
try
:
s1
=
os
.
lstat
(
path
)
if
isinstance
(
path
,
bytes
):
parent
=
join
(
path
,
b
'..'
)
else
:
parent
=
join
(
path
,
'..'
)
except
OSError
:
# It doesn't exist -- so not a mount point. :-)
return
False
else
:
if
stat
.
S_ISLNK
(
s1
.
st_mode
):
return
False
if
isinstance
(
path
,
bytes
):
parent
=
join
(
path
,
b
'..'
)
else
:
parent
=
join
(
path
,
'..'
)
try
:
s2
=
os
.
lstat
(
parent
)
except
OSError
:
return
False
# It doesn't exist -- so not a mount point :-)
return
False
dev1
=
s1
.
st_dev
dev2
=
s2
.
st_dev
if
dev1
!=
dev2
:
...
...
Misc/NEWS
Dosyayı görüntüle @
06f6fbff
...
...
@@ -162,6 +162,9 @@ Core and Builtins
Library
-------
-
Issue
#
18530
:
Remove
additional
stat
call
from
posixpath
.
ismount
.
Patch
by
Alex
Gaynor
.
-
Issue
#
18514
:
Fix
unreachable
Py_DECREF
()
call
in
PyCData_FromBaseObj
()
-
Issue
#
9177
:
Calling
read
()
or
write
()
now
raises
ValueError
,
not
...
...
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