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
e8ea97ff
Kaydet (Commit)
e8ea97ff
authored
Eki 31, 2012
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.2 (#16369)
üst
cc4bacf2
c4311282
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
0 deletions
+33
-0
symtablemodule.c
Modules/symtablemodule.c
+3
-0
object.c
Objects/object.c
+24
-0
unicodeobject.c
Objects/unicodeobject.c
+6
-0
No files found.
Modules/symtablemodule.c
Dosyayı görüntüle @
e8ea97ff
...
...
@@ -63,6 +63,9 @@ PyInit__symtable(void)
{
PyObject
*
m
;
if
(
PyType_Ready
(
&
PySTEntry_Type
)
<
0
)
return
NULL
;
m
=
PyModule_Create
(
&
symtablemodule
);
if
(
m
==
NULL
)
return
NULL
;
...
...
Objects/object.c
Dosyayı görüntüle @
e8ea97ff
...
...
@@ -1710,6 +1710,30 @@ _Py_ReadyTypes(void)
if
(
PyType_Ready
(
&
_PyNamespace_Type
)
<
0
)
Py_FatalError
(
"Can't initialize namespace type"
);
if
(
PyType_Ready
(
&
PyCapsule_Type
)
<
0
)
Py_FatalError
(
"Can't initialize capsule type"
);
if
(
PyType_Ready
(
&
PyLongRangeIter_Type
)
<
0
)
Py_FatalError
(
"Can't initialize long range iterator type"
);
if
(
PyType_Ready
(
&
PyCell_Type
)
<
0
)
Py_FatalError
(
"Can't initialize cell type"
);
if
(
PyType_Ready
(
&
PyInstanceMethod_Type
)
<
0
)
Py_FatalError
(
"Can't initialize instance method type"
);
if
(
PyType_Ready
(
&
PyClassMethodDescr_Type
)
<
0
)
Py_FatalError
(
"Can't initialize class method descr type"
);
if
(
PyType_Ready
(
&
PyMethodDescr_Type
)
<
0
)
Py_FatalError
(
"Can't initialize method descr type"
);
if
(
PyType_Ready
(
&
PyCallIter_Type
)
<
0
)
Py_FatalError
(
"Can't initialize call iter type"
);
if
(
PyType_Ready
(
&
PySeqIter_Type
)
<
0
)
Py_FatalError
(
"Can't initialize sequence iterator type"
);
}
...
...
Objects/unicodeobject.c
Dosyayı görüntüle @
e8ea97ff
...
...
@@ -14167,6 +14167,12 @@ int _PyUnicode_Init(void)
PyType_Ready(&EncodingMapType);
if (PyType_Ready(&PyFieldNameIter_Type) < 0)
Py_FatalError("Can't initialize field name iterator type");
if (PyType_Ready(&PyFormatterIter_Type) < 0)
Py_FatalError("Can't initialize formatter iter type");
#ifdef HAVE_MBCS
winver.dwOSVersionInfoSize = sizeof(winver);
if (!GetVersionEx((OSVERSIONINFO*)&winver)) {
...
...
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