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
b58ab2c6
Kaydet (Commit)
b58ab2c6
authored
May 10, 2012
tarafından
Jesus Cea
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
MERGE: Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/'
üst
3b1a74a9
7f0d8886
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 @
b58ab2c6
...
...
@@ -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 @
b58ab2c6
...
...
@@ -300,6 +300,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 @
b58ab2c6
...
...
@@ -335,6 +335,7 @@ Andrew Francis
Martin Franklin
Bruce Frederiksen
Robin Friedrich
Bradley Froehle
Ivan Frohne
Matthias Fuchs
Jim Fulton
...
...
Misc/NEWS
Dosyayı görüntüle @
b58ab2c6
...
...
@@ -139,6 +139,8 @@ Library
-
Issue
#
13815
:
TarFile
.
extractfile
()
now
returns
io
.
BufferedReader
objects
.
-
Issue
#
14768
:
os
.
path
.
expanduser
(
'~/a'
)
doesn
't works correctly when HOME is '
/
'.
- Issue #14371: Support bzip2 in zipfile module. Patch by Serhiy Storchaka.
- Issue #13183: Fix pdb skipping frames after hitting a breakpoint and running
...
...
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