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
0fc55a23
Kaydet (Commit)
0fc55a23
authored
Eyl 10, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
test_platform: Save/restore os.environ on Windows
üst
b161562f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
test_platform.py
Lib/test/test_platform.py
+7
-0
No files found.
Lib/test/test_platform.py
Dosyayı görüntüle @
0fc55a23
...
...
@@ -18,6 +18,12 @@ class PlatformTest(unittest.TestCase):
# On Windows, the EXE needs to know where pythonXY.dll is at so we have
# to add the directory to the path.
if
sys
.
platform
==
"win32"
:
def
restore_environ
(
old_env
):
os
.
environ
.
clear
()
os
.
environ
.
update
(
old_env
)
self
.
addCleanup
(
restore_environ
,
dict
(
os
.
environ
))
os
.
environ
[
"Path"
]
=
"{};{}"
.
format
(
os
.
path
.
dirname
(
sys
.
executable
),
os
.
environ
[
"Path"
])
...
...
@@ -26,6 +32,7 @@ class PlatformTest(unittest.TestCase):
'import platform; print(platform.architecture())'
]
p
=
subprocess
.
Popen
(
cmd
,
stdout
=
subprocess
.
PIPE
)
return
p
.
communicate
()
real
=
os
.
path
.
realpath
(
sys
.
executable
)
link
=
os
.
path
.
abspath
(
support
.
TESTFN
)
os
.
symlink
(
real
,
link
)
...
...
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