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
f2011e3e
Kaydet (Commit)
f2011e3e
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
95f42a86
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 @
f2011e3e
...
...
@@ -267,8 +267,8 @@ def expanduser(path):
except
KeyError
:
return
path
userhome
=
pwent
.
pw_dir
userhome
=
userhome
.
rstrip
(
'/'
)
or
userhome
return
userhome
+
path
[
i
:]
userhome
=
userhome
.
rstrip
(
'/'
)
return
(
userhome
+
path
[
i
:])
or
'/'
# Expand paths containing shell variable substitutions.
...
...
Lib/test/test_posixpath.py
Dosyayı görüntüle @
f2011e3e
...
...
@@ -201,6 +201,7 @@ class PosixPathTest(unittest.TestCase):
with
test_support
.
EnvironmentVarGuard
()
as
env
:
env
[
'HOME'
]
=
'/'
self
.
assertEqual
(
posixpath
.
expanduser
(
"~"
),
"/"
)
self
.
assertEqual
(
posixpath
.
expanduser
(
"~/foo"
),
"/foo"
)
def
test_normpath
(
self
):
self
.
assertEqual
(
posixpath
.
normpath
(
""
),
"."
)
...
...
Misc/ACKS
Dosyayı görüntüle @
f2011e3e
...
...
@@ -274,6 +274,7 @@ Doug Fort
John Fouhy
Martin Franklin
Robin Friedrich
Bradley Froehle
Ivan Frohne
Jim Fulton
Tadayoshi Funaba
...
...
Misc/NEWS
Dosyayı görüntüle @
f2011e3e
...
...
@@ -60,6 +60,8 @@ Core and Builtins
Library
-------
-
Issue
#
14768
:
os
.
path
.
expanduser
(
'~/a'
)
doesn
't works correctly when HOME is '
/
'.
- Issue #13183: Fix pdb skipping frames after hitting a breakpoint and running
step. Patch by Xavier de Gaye.
...
...
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