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
41785150
Kaydet (Commit)
41785150
authored
Haz 13, 2002
tarafından
Neal Norwitz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF # 533070 Silence AIX C Compiler Warnings
Warning caused by using &func. & is not necessary.
üst
e7b8ecf1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
signalmodule.c
Modules/signalmodule.c
+1
-1
object.c
Objects/object.c
+1
-1
No files found.
Modules/signalmodule.c
Dosyayı görüntüle @
41785150
...
@@ -522,7 +522,7 @@ initsignal(void)
...
@@ -522,7 +522,7 @@ initsignal(void)
Py_INCREF
(
IntHandler
);
Py_INCREF
(
IntHandler
);
Py_DECREF
(
Handlers
[
SIGINT
].
func
);
Py_DECREF
(
Handlers
[
SIGINT
].
func
);
Handlers
[
SIGINT
].
func
=
IntHandler
;
Handlers
[
SIGINT
].
func
=
IntHandler
;
old_siginthandler
=
PyOS_setsig
(
SIGINT
,
&
signal_handler
);
old_siginthandler
=
PyOS_setsig
(
SIGINT
,
signal_handler
);
}
}
#ifdef SIGHUP
#ifdef SIGHUP
...
...
Objects/object.c
Dosyayı görüntüle @
41785150
...
@@ -1953,7 +1953,7 @@ PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
...
@@ -1953,7 +1953,7 @@ PyTypeObject *_Py_cobject_hack = &PyCObject_Type;
/* Hack to force loading of abstract.o */
/* Hack to force loading of abstract.o */
int
(
*
_Py_abstract_hack
)(
PyObject
*
)
=
&
PyObject_Size
;
int
(
*
_Py_abstract_hack
)(
PyObject
*
)
=
PyObject_Size
;
/* Python's malloc wrappers (see pymem.h) */
/* Python's malloc wrappers (see pymem.h) */
...
...
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