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
798d7fba
Kaydet (Commit)
798d7fba
authored
Agu 17, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.5 (script_helper)
üst
435eaf44
7e6977a8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
script_helper.py
Lib/test/support/script_helper.py
+8
-8
No files found.
Lib/test/support/script_helper.py
Dosyayı görüntüle @
798d7fba
...
@@ -83,16 +83,16 @@ def run_python_until_end(*args, **env_vars):
...
@@ -83,16 +83,16 @@ def run_python_until_end(*args, **env_vars):
env
=
{}
env
=
{}
env
.
update
(
env_vars
)
env
.
update
(
env_vars
)
cmd_line
.
extend
(
args
)
cmd_line
.
extend
(
args
)
p
=
subprocess
.
Popen
(
cmd_line
,
stdin
=
subprocess
.
PIPE
,
p
roc
=
subprocess
.
Popen
(
cmd_line
,
stdin
=
subprocess
.
PIPE
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
,
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
,
env
=
env
)
env
=
env
)
try
:
with
proc
:
out
,
err
=
p
.
communicate
()
try
:
finally
:
out
,
err
=
proc
.
communicate
()
subprocess
.
_cleanup
()
finally
:
p
.
stdout
.
close
()
proc
.
kill
()
p
.
stderr
.
close
()
subprocess
.
_cleanup
()
rc
=
p
.
returncode
rc
=
p
roc
.
returncode
err
=
strip_python_stderr
(
err
)
err
=
strip_python_stderr
(
err
)
return
_PythonRunResult
(
rc
,
out
,
err
),
cmd_line
return
_PythonRunResult
(
rc
,
out
,
err
),
cmd_line
...
...
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