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
407aa2df
Kaydet (Commit)
407aa2df
authored
Şub 18, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Fix posixpath.realpath() for multiple pardirs (fixes issue #6975).
üst
f844f7e3
467393df
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
posixpath.py
Lib/posixpath.py
+4
-2
test_posixpath.py
Lib/test/test_posixpath.py
+18
-0
No files found.
Lib/posixpath.py
Dosyayı görüntüle @
407aa2df
...
...
@@ -418,9 +418,11 @@ def _joinrealpath(path, rest, seen):
if
name
==
pardir
:
# parent dir
if
path
:
path
=
dirname
(
path
)
path
,
name
=
split
(
path
)
if
name
==
pardir
:
path
=
join
(
path
,
pardir
,
pardir
)
else
:
path
=
name
path
=
pardir
continue
newpath
=
join
(
path
,
name
)
if
not
islink
(
newpath
):
...
...
Lib/test/test_posixpath.py
Dosyayı görüntüle @
407aa2df
...
...
@@ -340,6 +340,24 @@ class PosixPathTest(unittest.TestCase):
self
.
assertEqual
(
posixpath
.
normpath
(
b
"///..//./foo/.//bar"
),
b
"/foo/bar"
)
def
test_realpath_curdir
(
self
):
self
.
assertEqual
(
realpath
(
'.'
),
os
.
getcwd
())
self
.
assertEqual
(
realpath
(
'./.'
),
os
.
getcwd
())
self
.
assertEqual
(
realpath
(
'/'
.
join
([
'.'
]
*
100
)),
os
.
getcwd
())
self
.
assertEqual
(
realpath
(
b
'.'
),
os
.
getcwdb
())
self
.
assertEqual
(
realpath
(
b
'./.'
),
os
.
getcwdb
())
self
.
assertEqual
(
realpath
(
b
'/'
.
join
([
b
'.'
]
*
100
)),
os
.
getcwdb
())
def
test_realpath_pardir
(
self
):
self
.
assertEqual
(
realpath
(
'..'
),
dirname
(
os
.
getcwd
()))
self
.
assertEqual
(
realpath
(
'../..'
),
dirname
(
dirname
(
os
.
getcwd
())))
self
.
assertEqual
(
realpath
(
'/'
.
join
([
'..'
]
*
100
)),
'/'
)
self
.
assertEqual
(
realpath
(
b
'..'
),
dirname
(
os
.
getcwdb
()))
self
.
assertEqual
(
realpath
(
b
'../..'
),
dirname
(
dirname
(
os
.
getcwdb
())))
self
.
assertEqual
(
realpath
(
b
'/'
.
join
([
b
'..'
]
*
100
)),
b
'/'
)
@unittest.skipUnless
(
hasattr
(
os
,
"symlink"
),
"Missing symlink implementation"
)
@skip_if_ABSTFN_contains_backslash
...
...
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