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
7c679514
Kaydet (Commit)
7c679514
authored
Eki 06, 2013
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge with 3.3
üst
6d7d6cf7
c377fe2b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
signal.rst
Doc/library/signal.rst
+5
-1
ACKS
Misc/ACKS
+1
-0
No files found.
Doc/library/signal.rst
Dosyayı görüntüle @
7c679514
...
@@ -36,7 +36,11 @@ at a later point(for example at the next :term:`bytecode` instruction).
...
@@ -36,7 +36,11 @@ at a later point(for example at the next :term:`bytecode` instruction).
This has consequences:
This has consequences:
* It makes little sense to catch synchronous errors like :const:`SIGFPE` or
* It makes little sense to catch synchronous errors like :const:`SIGFPE` or
:const:`SIGSEGV`.
:const:`SIGSEGV` that are caused by an invalid operation in C code. Python
will return from the signal handler to the C code, which is likely to raise
the same signal again, causing Python to apparently hang. From Python 3.3
onwards, you can use the :mod:`faulthandler` module to report on synchronous
errors.
* A long-running calculation implemented purely in C (such as regular
* A long-running calculation implemented purely in C (such as regular
expression matching on a large body of text) may run uninterrupted for an
expression matching on a large body of text) may run uninterrupted for an
...
...
Misc/ACKS
Dosyayı görüntüle @
7c679514
...
@@ -1011,6 +1011,7 @@ Ariel Poliak
...
@@ -1011,6 +1011,7 @@ Ariel Poliak
Guilherme Polo
Guilherme Polo
Illia Polosukhin
Illia Polosukhin
Michael Pomraning
Michael Pomraning
Martin Pool
Iustin Pop
Iustin Pop
Claudiu Popa
Claudiu Popa
John Popplewell
John Popplewell
...
...
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