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
d2cd86dd
Kaydet (Commit)
d2cd86dd
authored
Tem 10, 2008
tarafından
Robert Schuppenies
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed Issue3122 and extended sys.getsizeof tests for built-in types.
üst
548db58e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
11 deletions
+10
-11
test_sys.py
Lib/test/test_sys.py
+0
-0
sysmodule.c
Python/sysmodule.c
+10
-11
No files found.
Lib/test/test_sys.py
Dosyayı görüntüle @
d2cd86dd
This diff is collapsed.
Click to expand it.
Python/sysmodule.c
Dosyayı görüntüle @
d2cd86dd
...
...
@@ -651,8 +651,15 @@ sys_getsizeof(PyObject *self, PyObject *args)
return
NULL
;
}
/* Type objects */
if
(
PyType_Check
(
args
)){
/* Make sure the type is initialized. float gets initialized late */
if
(
PyType_Ready
(
Py_TYPE
(
args
))
<
0
)
return
NULL
;
/* Instance of old-style class */
if
(
PyInstance_Check
(
args
))
return
PyInt_FromSsize_t
(
PyInstance_Type
.
tp_basicsize
);
/* all other objects */
else
{
PyObject
*
method
=
_PyType_Lookup
(
Py_TYPE
(
args
),
str__sizeof__
);
if
(
method
==
NULL
)
{
...
...
@@ -662,15 +669,7 @@ sys_getsizeof(PyObject *self, PyObject *args)
return
NULL
;
}
return
PyObject_CallFunctionObjArgs
(
method
,
args
,
NULL
);
}
/* Instance of old-style classes */
else
if
(
PyInstance_Check
(
args
))
return
PyInt_FromSsize_t
(
PyInstance_Type
.
tp_basicsize
);
/* Old-style classes */
else
if
(
PyClass_Check
(
args
))
return
PyInt_FromSsize_t
(
PyClass_Type
.
tp_basicsize
);
else
return
PyObject_CallMethod
(
args
,
"__sizeof__"
,
NULL
);
}
}
PyDoc_STRVAR
(
getsizeof_doc
,
...
...
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