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
8e9fe9f4
Kaydet (Commit)
8e9fe9f4
authored
Ara 05, 2010
tarafından
Hirokazu Yamamoto
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Avoid possible zombi process.
üst
2668145d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
test_os.py
Lib/test/test_os.py
+4
-2
No files found.
Lib/test/test_os.py
Dosyayı görüntüle @
8e9fe9f4
...
...
@@ -1106,13 +1106,15 @@ class Win32KillTests(unittest.TestCase):
"win_console_handler.py"
),
tagname
],
creationflags
=
subprocess
.
CREATE_NEW_PROCESS_GROUP
)
# Let the interpreter startup before we send signals. See #3137.
count
,
max
=
0
,
2
0
count
,
max
=
0
,
10
0
while
count
<
max
and
proc
.
poll
()
is
None
:
if
m
[
0
]
==
1
:
break
time
.
sleep
(
0.
5
)
time
.
sleep
(
0.
1
)
count
+=
1
else
:
# Forcefully kill the process if we weren't able to signal it.
os
.
kill
(
proc
.
pid
,
signal
.
SIGINT
)
self
.
fail
(
"Subprocess didn't finish initialization"
)
os
.
kill
(
proc
.
pid
,
event
)
# proc.send_signal(event) could also be done here.
...
...
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