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
687592de
Kaydet (Commit)
687592de
authored
Nis 14, 2015
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge: #23925: stop (eg) PYTHONSTARTUP from causing test_cmd_line failure.
üst
14a88abf
f4bbc535
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
test_cmd_line.py
Lib/test/test_cmd_line.py
+5
-1
No files found.
Lib/test/test_cmd_line.py
Dosyayı görüntüle @
687592de
...
...
@@ -271,7 +271,11 @@ class CmdLineTest(unittest.TestCase):
def
test_displayhook_unencodable
(
self
):
for
encoding
in
(
'ascii'
,
'latin-1'
,
'utf-8'
):
env
=
os
.
environ
.
copy
()
# We are testing a PYTHON environment variable here, so we can't
# use -E, -I, or script_helper (which uses them). So instead we do
# poor-man's isolation by deleting the PYTHON vars from env.
env
=
{
key
:
value
for
(
key
,
value
)
in
os
.
environ
.
copy
()
.
items
()
if
not
key
.
startswith
(
'PYTHON'
)}
env
[
'PYTHONIOENCODING'
]
=
encoding
p
=
subprocess
.
Popen
(
[
sys
.
executable
,
'-i'
],
...
...
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