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
42124a72
Kaydet (Commit)
42124a72
authored
Eki 31, 2012
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
initialize map/filter/zip in _PyBuiltin_Init rather than the catch-all function
üst
7ff2094b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
9 deletions
+6
-9
object.c
Objects/object.c
+0
-9
bltinmodule.c
Python/bltinmodule.c
+6
-0
No files found.
Objects/object.c
Dosyayı görüntüle @
42124a72
...
...
@@ -1708,15 +1708,6 @@ _Py_ReadyTypes(void)
if
(
PyType_Ready
(
&
PyMemberDescr_Type
)
<
0
)
Py_FatalError
(
"Can't initialize member descriptor type"
);
if
(
PyType_Ready
(
&
PyFilter_Type
)
<
0
)
Py_FatalError
(
"Can't initialize filter type"
);
if
(
PyType_Ready
(
&
PyMap_Type
)
<
0
)
Py_FatalError
(
"Can't initialize map type"
);
if
(
PyType_Ready
(
&
PyZip_Type
)
<
0
)
Py_FatalError
(
"Can't initialize zip type"
);
if
(
PyType_Ready
(
&
_PyNamespace_Type
)
<
0
)
Py_FatalError
(
"Can't initialize namespace type"
);
...
...
Python/bltinmodule.c
Dosyayı görüntüle @
42124a72
...
...
@@ -2405,6 +2405,12 @@ PyObject *
_PyBuiltin_Init
(
void
)
{
PyObject
*
mod
,
*
dict
,
*
debug
;
if
(
PyType_Ready
(
&
PyFilter_Type
)
<
0
||
PyType_Ready
(
&
PyMap_Type
)
<
0
||
PyType_Ready
(
&
PyZip_Type
)
<
0
)
return
NULL
;
mod
=
PyModule_Create
(
&
builtinsmodule
);
if
(
mod
==
NULL
)
return
NULL
;
...
...
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