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
25ec4a45
Kaydet (Commit)
25ec4a45
authored
Mar 12, 2019
tarafından
Anthony Sottile
Kaydeden (comit)
Steve Dower
Mar 12, 2019
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-36264: Don't honor POSIX HOME in os.path.expanduser on Windows (GH-12282)
üst
410aea1e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
14 deletions
+17
-14
test_config.py
Lib/distutils/tests/test_config.py
+1
-0
test_dist.py
Lib/distutils/tests/test_dist.py
+1
-1
ntpath.py
Lib/ntpath.py
+1
-3
test_netrc.py
Lib/test/test_netrc.py
+1
-0
test_ntpath.py
Lib/test/test_ntpath.py
+11
-10
2019-03-11-09-33-47.bpo-36264.rTzWce.rst
...S.d/next/Windows/2019-03-11-09-33-47.bpo-36264.rTzWce.rst
+2
-0
No files found.
Lib/distutils/tests/test_config.py
Dosyayı görüntüle @
25ec4a45
...
...
@@ -60,6 +60,7 @@ class BasePyPIRCCommandTestCase(support.TempdirManager,
super
(
BasePyPIRCCommandTestCase
,
self
)
.
setUp
()
self
.
tmp_dir
=
self
.
mkdtemp
()
os
.
environ
[
'HOME'
]
=
self
.
tmp_dir
os
.
environ
[
'USERPROFILE'
]
=
self
.
tmp_dir
self
.
rc
=
os
.
path
.
join
(
self
.
tmp_dir
,
'.pypirc'
)
self
.
dist
=
Distribution
()
...
...
Lib/distutils/tests/test_dist.py
Dosyayı görüntüle @
25ec4a45
...
...
@@ -463,7 +463,7 @@ class MetadataTestCase(support.TempdirManager, support.EnvironGuard,
# win32-style
if
sys
.
platform
==
'win32'
:
# home drive should be found
os
.
environ
[
'
HOM
E'
]
=
temp_dir
os
.
environ
[
'
USERPROFIL
E'
]
=
temp_dir
files
=
dist
.
find_config_files
()
self
.
assertIn
(
user_filename
,
files
,
'
%
r not found in
%
r'
%
(
user_filename
,
files
))
...
...
Lib/ntpath.py
Dosyayı görüntüle @
25ec4a45
...
...
@@ -299,9 +299,7 @@ def expanduser(path):
while
i
<
n
and
path
[
i
]
not
in
_get_bothseps
(
path
):
i
+=
1
if
'HOME'
in
os
.
environ
:
userhome
=
os
.
environ
[
'HOME'
]
elif
'USERPROFILE'
in
os
.
environ
:
if
'USERPROFILE'
in
os
.
environ
:
userhome
=
os
.
environ
[
'USERPROFILE'
]
elif
not
'HOMEPATH'
in
os
.
environ
:
return
path
...
...
Lib/test/test_netrc.py
Dosyayı görüntüle @
25ec4a45
...
...
@@ -154,6 +154,7 @@ class NetrcTestCase(unittest.TestCase):
called
.
append
(
s
)
with
support
.
EnvironmentVarGuard
()
as
environ
:
environ
.
set
(
'HOME'
,
fake_home
)
environ
.
set
(
'USERPROFILE'
,
fake_home
)
result
=
orig_expanduser
(
s
)
return
result
...
...
Lib/test/test_ntpath.py
Dosyayı görüntüle @
25ec4a45
...
...
@@ -262,20 +262,21 @@ class TestNtpath(unittest.TestCase):
env
[
'USERPROFILE'
]
=
'C:
\\
eric
\\
idle'
tester
(
'ntpath.expanduser("~test")'
,
'C:
\\
eric
\\
test'
)
tester
(
'ntpath.expanduser("~")'
,
'C:
\\
eric
\\
idle'
)
env
.
clear
()
env
[
'HOME'
]
=
'C:
\\
idle
\\
eric'
tester
(
'ntpath.expanduser("~test")'
,
'C:
\\
idle
\\
test'
)
tester
(
'ntpath.expanduser("~")'
,
'C:
\\
idle
\\
eric'
)
tester
(
'ntpath.expanduser("~test
\\
foo
\\
bar")'
,
'C:
\\
idle
\\
test
\\
foo
\\
bar'
)
'C:
\\
eric
\\
test
\\
foo
\\
bar'
)
tester
(
'ntpath.expanduser("~test/foo/bar")'
,
'C:
\\
idle
\\
test/foo/bar'
)
'C:
\\
eric
\\
test/foo/bar'
)
tester
(
'ntpath.expanduser("~
\\
foo
\\
bar")'
,
'C:
\\
idle
\\
eric
\\
foo
\\
bar'
)
'C:
\\
eric
\\
idle
\\
foo
\\
bar'
)
tester
(
'ntpath.expanduser("~/foo/bar")'
,
'C:
\\
idle
\\
eric/foo/bar'
)
'C:
\\
eric
\\
idle/foo/bar'
)
# bpo-36264: ignore `HOME` when set on windows
env
.
clear
()
env
[
'HOME'
]
=
'F:
\\
'
env
[
'USERPROFILE'
]
=
'C:
\\
eric
\\
idle'
tester
(
'ntpath.expanduser("~test")'
,
'C:
\\
eric
\\
test'
)
tester
(
'ntpath.expanduser("~")'
,
'C:
\\
eric
\\
idle'
)
@unittest.skipUnless
(
nt
,
"abspath requires 'nt' module"
)
def
test_abspath
(
self
):
...
...
Misc/NEWS.d/next/Windows/2019-03-11-09-33-47.bpo-36264.rTzWce.rst
0 → 100644
Dosyayı görüntüle @
25ec4a45
Don't honor POSIX ``HOME`` in ``os.path.expanduser`` on windows. Patch by
Anthony Sottile.
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