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
1df42b11
Kaydet (Commit)
1df42b11
authored
Eyl 11, 2007
tarafından
Nick Coghlan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Always use the -E flag when spawning subprocesses in test_cmd_line (Issue 1056)
üst
93bf9ce9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
test_cmd_line.py
Lib/test/test_cmd_line.py
+2
-5
No files found.
Lib/test/test_cmd_line.py
Dosyayı görüntüle @
1df42b11
...
...
@@ -4,7 +4,7 @@ import sys
import
subprocess
def
_spawn_python
(
*
args
):
cmd_line
=
[
sys
.
executable
]
cmd_line
=
[
sys
.
executable
,
'-E'
]
cmd_line
.
extend
(
args
)
return
subprocess
.
Popen
(
cmd_line
,
stdin
=
subprocess
.
PIPE
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
STDOUT
)
...
...
@@ -24,7 +24,7 @@ class CmdLineTest(unittest.TestCase):
return
_kill_python
(
p
)
def
exit_code
(
self
,
*
args
):
cmd_line
=
[
sys
.
executable
]
cmd_line
=
[
sys
.
executable
,
'-E'
]
cmd_line
.
extend
(
args
)
return
subprocess
.
call
(
cmd_line
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
...
...
@@ -38,9 +38,6 @@ class CmdLineTest(unittest.TestCase):
self
.
assertTrue
(
data
==
''
or
data
.
endswith
(
'
\n
'
))
self
.
assertTrue
(
'Traceback'
not
in
data
)
def
test_environment
(
self
):
self
.
verify_valid_flag
(
'-E'
)
def
test_optimize
(
self
):
self
.
verify_valid_flag
(
'-O'
)
self
.
verify_valid_flag
(
'-OO'
)
...
...
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