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
3bbd2fad
Kaydet (Commit)
3bbd2fad
authored
Tem 26, 2012
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #15456: Fix code __sizeof__ after #12399 change.
Patch by Serhiy Storchaka.
üst
d0118e16
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
1 deletion
+26
-1
test_sys.py
Lib/test/test_sys.py
+6
-0
NEWS
Misc/NEWS
+3
-0
codeobject.c
Objects/codeobject.c
+17
-1
No files found.
Lib/test/test_sys.py
Dosyayı görüntüle @
3bbd2fad
...
...
@@ -702,6 +702,12 @@ class SizeofTest(unittest.TestCase):
check
(
get_cell
()
.
__closure__
[
0
],
size
(
h
+
'P'
))
# code
check
(
get_cell
()
.
__code__
,
size
(
h
+
'5i9Pi3P'
))
check
(
get_cell
.
__code__
,
size
(
h
+
'5i9Pi3P'
))
def
get_cell2
(
x
):
def
inner
():
return
x
return
inner
check
(
get_cell2
.
__code__
,
size
(
h
+
'5i9Pi3P'
)
+
1
)
# complex
check
(
complex
(
0
,
1
),
size
(
h
+
'2d'
))
# method_descriptor (descriptor object)
...
...
Misc/NEWS
Dosyayı görüntüle @
3bbd2fad
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 2?
Core and Builtins
-----------------
- Issue #15456: Fix code __sizeof__ after #12399 change.
Patch by Serhiy Storchaka.
- Issue #15404: Refleak in PyMethodObject repr.
- Issue #15394: An issue in PyModule_Create that caused references to
...
...
Objects/codeobject.c
Dosyayı görüntüle @
3bbd2fad
...
...
@@ -374,6 +374,17 @@ code_dealloc(PyCodeObject *co)
PyObject_DEL
(
co
);
}
static
PyObject
*
code_sizeof
(
PyCodeObject
*
co
,
void
*
unused
)
{
Py_ssize_t
res
;
res
=
sizeof
(
PyCodeObject
);
if
(
co
->
co_cell2arg
!=
NULL
&&
co
->
co_cellvars
!=
NULL
)
res
+=
PyTuple_GET_SIZE
(
co
->
co_cellvars
)
*
sizeof
(
unsigned
char
);
return
PyLong_FromSsize_t
(
res
);
}
static
PyObject
*
code_repr
(
PyCodeObject
*
co
)
{
...
...
@@ -480,6 +491,11 @@ code_hash(PyCodeObject *co)
/* XXX code objects need to participate in GC? */
static
struct
PyMethodDef
code_methods
[]
=
{
{
"__sizeof__"
,
(
PyCFunction
)
code_sizeof
,
METH_NOARGS
},
{
NULL
,
NULL
}
/* sentinel */
};
PyTypeObject
PyCode_Type
=
{
PyVarObject_HEAD_INIT
(
&
PyType_Type
,
0
)
"code"
,
...
...
@@ -508,7 +524,7 @@ PyTypeObject PyCode_Type = {
offsetof
(
PyCodeObject
,
co_weakreflist
),
/* tp_weaklistoffset */
0
,
/* tp_iter */
0
,
/* tp_iternext */
0
,
/* tp_methods */
code_methods
,
/* tp_methods */
code_memberlist
,
/* tp_members */
0
,
/* tp_getset */
0
,
/* tp_base */
...
...
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