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
b4dc6af7
Kaydet (Commit)
b4dc6af7
authored
Nis 20, 2017
tarafından
Dong-hee Na
Kaydeden (comit)
Serhiy Storchaka
Nis 20, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-12414: Update code_sizeof() to take in account co_extra memory. (#1168)
üst
58f3c9dc
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
5 deletions
+16
-5
test_sys.py
Lib/test/test_sys.py
+5
-3
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+4
-0
codeobject.c
Objects/codeobject.c
+6
-2
No files found.
Lib/test/test_sys.py
Dosyayı görüntüle @
b4dc6af7
...
...
@@ -922,13 +922,15 @@ class SizeofTest(unittest.TestCase):
return
inner
check
(
get_cell
()
.
__closure__
[
0
],
size
(
'P'
))
# code
check
(
get_cell
()
.
__code__
,
size
(
'6i13P'
))
check
(
get_cell
.
__code__
,
size
(
'6i13P'
))
def
check_code_size
(
a
,
expected_size
):
self
.
assertGreaterEqual
(
sys
.
getsizeof
(
a
),
expected_size
)
check_code_size
(
get_cell
()
.
__code__
,
size
(
'6i13P'
))
check_code_size
(
get_cell
.
__code__
,
size
(
'6i13P'
))
def
get_cell2
(
x
):
def
inner
():
return
x
return
inner
check
(
get_cell2
.
__code__
,
size
(
'6i13P'
)
+
calcsize
(
'n'
))
check
_code_size
(
get_cell2
.
__code__
,
size
(
'6i13P'
)
+
calcsize
(
'n'
))
# complex
check
(
complex
(
0
,
1
),
size
(
'2d'
))
# method_descriptor (descriptor object)
...
...
Misc/ACKS
Dosyayı görüntüle @
b4dc6af7
...
...
@@ -1063,6 +1063,7 @@ R. David Murray
Matti Mäki
Jörg Müller
Kaushik N
Dong-hee Na
Dale Nagata
John Nagle
Takahiro Nakayama
...
...
Misc/NEWS
Dosyayı görüntüle @
b4dc6af7
...
...
@@ -10,6 +10,10 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
- bpo-12414: sys.getsizeof() on a code object now returns the sizes
which includes the code struct and sizes of objects which it references.
Patch by Dong-hee Na.
- bpo-29839: len() now raises ValueError rather than OverflowError if
__len__() returned a large negative integer.
...
...
Objects/codeobject.c
Dosyayı görüntüle @
b4dc6af7
...
...
@@ -451,11 +451,15 @@ code_dealloc(PyCodeObject *co)
static
PyObject
*
code_sizeof
(
PyCodeObject
*
co
,
void
*
unused
)
{
Py_ssize_t
res
;
Py_ssize_t
res
=
_PyObject_SIZE
(
Py_TYPE
(
co
));
_PyCodeObjectExtra
*
co_extra
=
(
_PyCodeObjectExtra
*
)
co
->
co_extra
;
res
=
_PyObject_SIZE
(
Py_TYPE
(
co
));
if
(
co
->
co_cell2arg
!=
NULL
&&
co
->
co_cellvars
!=
NULL
)
res
+=
PyTuple_GET_SIZE
(
co
->
co_cellvars
)
*
sizeof
(
Py_ssize_t
);
if
(
co_extra
!=
NULL
)
res
+=
co_extra
->
ce_size
*
sizeof
(
co_extra
->
ce_extras
[
0
]);
return
PyLong_FromSsize_t
(
res
);
}
...
...
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