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
7f0d8886
Kaydet (Commit)
7f0d8886
authored
May 10, 2012
tarafından
Jesus Cea
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/'
üst
d576c711
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
2 deletions
+6
-2
posixpath.py
Lib/posixpath.py
+2
-2
test_posixpath.py
Lib/test/test_posixpath.py
+1
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/posixpath.py
Dosyayı görüntüle @
7f0d8886
...
...
@@ -266,8 +266,8 @@ def expanduser(path):
root
=
b
'/'
else
:
root
=
'/'
userhome
=
userhome
.
rstrip
(
root
)
or
userhome
return
userhome
+
path
[
i
:]
userhome
=
userhome
.
rstrip
(
root
)
return
(
userhome
+
path
[
i
:])
or
root
# Expand paths containing shell variable substitutions.
...
...
Lib/test/test_posixpath.py
Dosyayı görüntüle @
7f0d8886
...
...
@@ -298,6 +298,7 @@ class PosixPathTest(unittest.TestCase):
with
support
.
EnvironmentVarGuard
()
as
env
:
env
[
'HOME'
]
=
'/'
self
.
assertEqual
(
posixpath
.
expanduser
(
"~"
),
"/"
)
self
.
assertEqual
(
posixpath
.
expanduser
(
"~/foo"
),
"/foo"
)
# expanduser should fall back to using the password database
del
env
[
'HOME'
]
home
=
pwd
.
getpwuid
(
os
.
getuid
())
.
pw_dir
...
...
Misc/ACKS
Dosyayı görüntüle @
7f0d8886
...
...
@@ -308,6 +308,7 @@ Doug Fort
John Fouhy
Martin Franklin
Robin Friedrich
Bradley Froehle
Ivan Frohne
Jim Fulton
Tadayoshi Funaba
...
...
Misc/NEWS
Dosyayı görüntüle @
7f0d8886
...
...
@@ -63,6 +63,8 @@ Core and Builtins
Library
-------
- Issue #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/'.
- Issue #14741: Fix missing support for Ellipsis ('...') in parser module.
- Issue #14697: Fix missing support for set displays and set comprehensions in
...
...
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