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
0dd3d309
Kaydet (Commit)
0dd3d309
authored
Şub 10, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #6975: os.path.realpath() now correctly resolves multiple nested symlinks on POSIX platforms.
üst
bb801313
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
95 additions
and
38 deletions
+95
-38
posixpath.py
Lib/posixpath.py
+43
-38
test_posixpath.py
Lib/test/test_posixpath.py
+49
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/posixpath.py
Dosyayı görüntüle @
0dd3d309
...
...
@@ -364,45 +364,50 @@ def abspath(path):
def
realpath
(
filename
):
"""Return the canonical path of the specified filename, eliminating any
symbolic links encountered in the path."""
if
isabs
(
filename
):
bits
=
[
'/'
]
+
filename
.
split
(
'/'
)[
1
:]
else
:
bits
=
[
''
]
+
filename
.
split
(
'/'
)
for
i
in
range
(
2
,
len
(
bits
)
+
1
):
component
=
join
(
*
bits
[
0
:
i
])
# Resolve symbolic links.
if
islink
(
component
):
resolved
=
_resolve_link
(
component
)
if
resolved
is
None
:
# Infinite loop -- return original component + rest of the path
return
abspath
(
join
(
*
([
component
]
+
bits
[
i
:])))
path
,
ok
=
_joinrealpath
(
''
,
filename
,
{})
return
abspath
(
path
)
# Join two paths, normalizing ang eliminating any symbolic links
# encountered in the second path.
def
_joinrealpath
(
path
,
rest
,
seen
):
if
isabs
(
rest
):
rest
=
rest
[
1
:]
path
=
sep
while
rest
:
name
,
_
,
rest
=
rest
.
partition
(
sep
)
if
not
name
or
name
==
curdir
:
# current dir
continue
if
name
==
pardir
:
# parent dir
if
path
:
path
=
dirname
(
path
)
else
:
newpath
=
join
(
*
([
resolved
]
+
bits
[
i
:]))
return
realpath
(
newpath
)
return
abspath
(
filename
)
def
_resolve_link
(
path
):
"""Internal helper function. Takes a path and follows symlinks
until we either arrive at something that isn't a symlink, or
encounter a path we've seen before (meaning that there's a loop).
"""
paths_seen
=
set
()
while
islink
(
path
):
if
path
in
paths_seen
:
# Already seen this path, so we must have a symlink loop
return
None
paths_seen
.
add
(
path
)
# Resolve where the link points to
resolved
=
os
.
readlink
(
path
)
if
not
isabs
(
resolved
):
dir
=
dirname
(
path
)
path
=
normpath
(
join
(
dir
,
resolved
))
else
:
path
=
normpath
(
resolved
)
return
path
path
=
name
continue
newpath
=
join
(
path
,
name
)
if
not
islink
(
newpath
):
path
=
newpath
continue
# Resolve the symbolic link
if
newpath
in
seen
:
# Already seen this path
path
=
seen
[
newpath
]
if
path
is
not
None
:
# use cached value
continue
# The symlink is not resolved, so we must have a symlink loop.
# Return already resolved part + rest of the path unchanged.
return
join
(
newpath
,
rest
),
False
seen
[
newpath
]
=
None
# not resolved symlink
path
,
ok
=
_joinrealpath
(
path
,
os
.
readlink
(
newpath
),
seen
)
if
not
ok
:
return
join
(
path
,
rest
),
False
seen
[
newpath
]
=
path
# resolved symlink
return
path
,
True
supports_unicode_filenames
=
(
sys
.
platform
==
'darwin'
)
...
...
Lib/test/test_posixpath.py
Dosyayı görüntüle @
0dd3d309
...
...
@@ -236,6 +236,22 @@ class PosixPathTest(unittest.TestCase):
self
.
assertEqual
(
realpath
(
ABSTFN
+
"1"
),
ABSTFN
+
"1"
)
self
.
assertEqual
(
realpath
(
ABSTFN
+
"2"
),
ABSTFN
+
"2"
)
self
.
assertEqual
(
realpath
(
ABSTFN
+
"1/x"
),
ABSTFN
+
"1/x"
)
self
.
assertEqual
(
realpath
(
ABSTFN
+
"1/.."
),
dirname
(
ABSTFN
))
self
.
assertEqual
(
realpath
(
ABSTFN
+
"1/../x"
),
dirname
(
ABSTFN
)
+
"/x"
)
os
.
symlink
(
ABSTFN
+
"x"
,
ABSTFN
+
"y"
)
self
.
assertEqual
(
realpath
(
ABSTFN
+
"1/../"
+
basename
(
ABSTFN
)
+
"y"
),
ABSTFN
+
"y"
)
self
.
assertEqual
(
realpath
(
ABSTFN
+
"1/../"
+
basename
(
ABSTFN
)
+
"1"
),
ABSTFN
+
"1"
)
os
.
symlink
(
basename
(
ABSTFN
)
+
"a/b"
,
ABSTFN
+
"a"
)
self
.
assertEqual
(
realpath
(
ABSTFN
+
"a"
),
ABSTFN
+
"a/b"
)
os
.
symlink
(
"../"
+
basename
(
dirname
(
ABSTFN
))
+
"/"
+
basename
(
ABSTFN
)
+
"c"
,
ABSTFN
+
"c"
)
self
.
assertEqual
(
realpath
(
ABSTFN
+
"c"
),
ABSTFN
+
"c"
)
# Test using relative path as well.
os
.
chdir
(
dirname
(
ABSTFN
))
self
.
assertEqual
(
realpath
(
basename
(
ABSTFN
)),
ABSTFN
)
...
...
@@ -244,6 +260,39 @@ class PosixPathTest(unittest.TestCase):
test_support
.
unlink
(
ABSTFN
)
test_support
.
unlink
(
ABSTFN
+
"1"
)
test_support
.
unlink
(
ABSTFN
+
"2"
)
test_support
.
unlink
(
ABSTFN
+
"y"
)
test_support
.
unlink
(
ABSTFN
+
"c"
)
def
test_realpath_repeated_indirect_symlinks
(
self
):
# Issue #6975.
try
:
os
.
mkdir
(
ABSTFN
)
os
.
symlink
(
'../'
+
basename
(
ABSTFN
),
ABSTFN
+
'/self'
)
os
.
symlink
(
'self/self/self'
,
ABSTFN
+
'/link'
)
self
.
assertEqual
(
realpath
(
ABSTFN
+
'/link'
),
ABSTFN
)
finally
:
test_support
.
unlink
(
ABSTFN
+
'/self'
)
test_support
.
unlink
(
ABSTFN
+
'/link'
)
safe_rmdir
(
ABSTFN
)
def
test_realpath_deep_recursion
(
self
):
depth
=
10
old_path
=
abspath
(
'.'
)
try
:
os
.
mkdir
(
ABSTFN
)
for
i
in
range
(
depth
):
os
.
symlink
(
'/'
.
join
([
'
%
d'
%
i
]
*
10
),
ABSTFN
+
'/
%
d'
%
(
i
+
1
))
os
.
symlink
(
'.'
,
ABSTFN
+
'/0'
)
self
.
assertEqual
(
realpath
(
ABSTFN
+
'/
%
d'
%
depth
),
ABSTFN
)
# Test using relative path as well.
os
.
chdir
(
ABSTFN
)
self
.
assertEqual
(
realpath
(
'
%
d'
%
depth
),
ABSTFN
)
finally
:
os
.
chdir
(
old_path
)
for
i
in
range
(
depth
+
1
):
test_support
.
unlink
(
ABSTFN
+
'/
%
d'
%
i
)
safe_rmdir
(
ABSTFN
)
def
test_realpath_resolve_parents
(
self
):
# We also need to resolve any symlinks in the parents of a relative
...
...
Misc/NEWS
Dosyayı görüntüle @
0dd3d309
...
...
@@ -202,6 +202,9 @@ Core and Builtins
Library
-------
- Issue #6975: os.path.realpath() now correctly resolves multiple nested
symlinks on POSIX platforms.
- Issue #17156: pygettext.py now correctly escapes non-ascii characters.
- Issue #7358: cStringIO.StringIO now supports writing to and reading from
...
...
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