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
1155887a
Kaydet (Commit)
1155887a
authored
Nis 06, 2003
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
initgc(): Rewrote to use the PyModule_AddXYZ API; cuts code size.
üst
259272b7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
17 deletions
+14
-17
gcmodule.c
Modules/gcmodule.c
+14
-17
No files found.
Modules/gcmodule.c
Dosyayı görüntüle @
1155887a
...
...
@@ -973,32 +973,29 @@ void
initgc
(
void
)
{
PyObject
*
m
;
PyObject
*
d
;
m
=
Py_InitModule4
(
"gc"
,
GcMethods
,
gc__doc__
,
NULL
,
PYTHON_API_VERSION
);
d
=
PyModule_GetDict
(
m
);
if
(
garbage
==
NULL
)
{
garbage
=
PyList_New
(
0
);
if
(
garbage
==
NULL
)
return
;
}
PyDict_SetItemString
(
d
,
"garbage"
,
garbage
);
PyDict_SetItemString
(
d
,
"DEBUG_STATS"
,
PyInt_FromLong
(
DEBUG_STATS
));
PyDict_SetItemString
(
d
,
"DEBUG_COLLECTABLE"
,
PyInt_FromLong
(
DEBUG_COLLECTABLE
));
PyDict_SetItemString
(
d
,
"DEBUG_UNCOLLECTABLE"
,
PyInt_FromLong
(
DEBUG_UNCOLLECTABLE
));
PyDict_SetItemString
(
d
,
"DEBUG_INSTANCES"
,
PyInt_FromLong
(
DEBUG_INSTANCES
));
PyDict_SetItemString
(
d
,
"DEBUG_OBJECTS"
,
PyInt_FromLong
(
DEBUG_OBJECTS
));
PyDict_SetItemString
(
d
,
"DEBUG_SAVEALL"
,
PyInt_FromLong
(
DEBUG_SAVEALL
));
PyDict_SetItemString
(
d
,
"DEBUG_LEAK"
,
PyInt_FromLong
(
DEBUG_LEAK
));
if
(
PyModule_AddObject
(
m
,
"garbage"
,
garbage
)
<
0
)
return
;
#define ADD_INT(NAME) if (PyModule_AddIntConstant(m, #NAME, NAME) < 0) return
ADD_INT
(
DEBUG_STATS
);
ADD_INT
(
DEBUG_COLLECTABLE
);
ADD_INT
(
DEBUG_UNCOLLECTABLE
);
ADD_INT
(
DEBUG_INSTANCES
);
ADD_INT
(
DEBUG_OBJECTS
);
ADD_INT
(
DEBUG_SAVEALL
);
ADD_INT
(
DEBUG_LEAK
);
#undef ADD_INT
}
/* for debugging */
...
...
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