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
ec3c5e39
Kaydet (Commit)
ec3c5e39
authored
Tem 30, 2006
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Verify that the signal handlers were really called
üst
c173b488
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
test_signal.py
Lib/test/test_signal.py
+12
-0
No files found.
Lib/test/test_signal.py
Dosyayı görüntüle @
ec3c5e39
...
@@ -25,7 +25,11 @@ script = """
...
@@ -25,7 +25,11 @@ script = """
) &
) &
"""
%
vars
()
"""
%
vars
()
a_called
=
b_called
=
False
def
handlerA
(
*
args
):
def
handlerA
(
*
args
):
global
a_called
a_called
=
True
if
verbose
:
if
verbose
:
print
"handlerA"
,
args
print
"handlerA"
,
args
...
@@ -33,6 +37,8 @@ class HandlerBCalled(Exception):
...
@@ -33,6 +37,8 @@ class HandlerBCalled(Exception):
pass
pass
def
handlerB
(
*
args
):
def
handlerB
(
*
args
):
global
b_called
b_called
=
True
if
verbose
:
if
verbose
:
print
"handlerB"
,
args
print
"handlerB"
,
args
raise
HandlerBCalled
,
args
raise
HandlerBCalled
,
args
...
@@ -88,6 +94,12 @@ try:
...
@@ -88,6 +94,12 @@ try:
if
verbose
:
if
verbose
:
print
"KeyboardInterrupt (assume the alarm() went off)"
print
"KeyboardInterrupt (assume the alarm() went off)"
if
not
a_called
:
print
'HandlerA not called'
if
not
b_called
:
print
'HandlerB not called'
finally
:
finally
:
signal
.
signal
(
signal
.
SIGHUP
,
hup
)
signal
.
signal
(
signal
.
SIGHUP
,
hup
)
signal
.
signal
(
signal
.
SIGUSR1
,
usr1
)
signal
.
signal
(
signal
.
SIGUSR1
,
usr1
)
...
...
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