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
17658a1c
Kaydet (Commit)
17658a1c
authored
May 24, 2011
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge 3.1
üst
48e21fc4
fbe56bb8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
typeobject.c
Objects/typeobject.c
+3
-3
No files found.
Objects/typeobject.c
Dosyayı görüntüle @
17658a1c
...
@@ -2582,9 +2582,9 @@ static PyMethodDef type_methods[] = {
...
@@ -2582,9 +2582,9 @@ static PyMethodDef type_methods[] = {
PyDoc_STR
(
"__prepare__() -> dict
\n
"
PyDoc_STR
(
"__prepare__() -> dict
\n
"
"used to create the namespace for the class statement"
)},
"used to create the namespace for the class statement"
)},
{
"__instancecheck__"
,
type___instancecheck__
,
METH_O
,
{
"__instancecheck__"
,
type___instancecheck__
,
METH_O
,
PyDoc_STR
(
"__instancecheck__() -> check if an object is an instance"
)},
PyDoc_STR
(
"__instancecheck__() ->
bool
\n
check if an object is an instance"
)},
{
"__subclasscheck__"
,
type___subclasscheck__
,
METH_O
,
{
"__subclasscheck__"
,
type___subclasscheck__
,
METH_O
,
PyDoc_STR
(
"__subclasscheck__() -> check if a class is a subclass"
)},
PyDoc_STR
(
"__subclasscheck__() ->
bool
\n
check if a class is a subclass"
)},
{
0
}
{
0
}
};
};
...
@@ -3430,7 +3430,7 @@ static PyMethodDef object_methods[] = {
...
@@ -3430,7 +3430,7 @@ static PyMethodDef object_methods[] = {
{
"__format__"
,
object_format
,
METH_VARARGS
,
{
"__format__"
,
object_format
,
METH_VARARGS
,
PyDoc_STR
(
"default object formatter"
)},
PyDoc_STR
(
"default object formatter"
)},
{
"__sizeof__"
,
object_sizeof
,
METH_NOARGS
,
{
"__sizeof__"
,
object_sizeof
,
METH_NOARGS
,
PyDoc_STR
(
"__sizeof__() -> size of object in memory, in bytes"
)},
PyDoc_STR
(
"__sizeof__() ->
int
\n
size of object in memory, in bytes"
)},
{
0
}
{
0
}
};
};
...
...
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