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
7ff1e88a
Kaydet (Commit)
7ff1e88a
authored
May 25, 2017
tarafından
Segev Finer
Kaydeden (comit)
Victor Stinner
May 25, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Delete sigcheck.c since it appears unused (#1723)
üst
0cd7a3f1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
20 deletions
+1
-20
pyerrors.h
Include/pyerrors.h
+1
-1
sigcheck.c
Python/sigcheck.c
+0
-19
No files found.
Include/pyerrors.h
Dosyayı görüntüle @
7ff1e88a
...
...
@@ -352,7 +352,7 @@ PyAPI_FUNC(PyObject *) _PyErr_TrySetFromCause(
#endif
/* In sig
check.c or sig
nalmodule.c */
/* In signalmodule.c */
PyAPI_FUNC
(
int
)
PyErr_CheckSignals
(
void
);
PyAPI_FUNC
(
void
)
PyErr_SetInterrupt
(
void
);
...
...
Python/sigcheck.c
deleted
100644 → 0
Dosyayı görüntüle @
0cd7a3f1
/* Sigcheck is similar to intrcheck() but sets an exception when an
interrupt occurs. It can't be in the intrcheck.c file since that
file (and the whole directory it is in) doesn't know about objects
or exceptions. It can't be in errors.c because it can be
overridden (at link time) by a more powerful version implemented in
signalmodule.c. */
#include "Python.h"
/* ARGSUSED */
int
PyErr_CheckSignals
(
void
)
{
if
(
!
PyOS_InterruptOccurred
())
return
0
;
PyErr_SetNone
(
PyExc_KeyboardInterrupt
);
return
-
1
;
}
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