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
745dc65b
Kaydet (Commit)
745dc65b
authored
Şub 22, 2018
tarafından
Eddie Elizondo
Kaydeden (comit)
Benjamin Peterson
Şub 22, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800)
üst
c84cf6c0
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
3 deletions
+6
-3
ACKS
Misc/ACKS
+1
-0
2018-02-21-12-46-00.bpo-32898.M15bZh.rst
...EWS.d/next/Build/2018-02-21-12-46-00.bpo-32898.M15bZh.rst
+1
-0
listobject.c
Objects/listobject.c
+1
-1
object.c
Objects/object.c
+2
-1
tupleobject.c
Objects/tupleobject.c
+1
-1
No files found.
Misc/ACKS
Dosyayı görüntüle @
745dc65b
...
...
@@ -425,6 +425,7 @@ Tal Einat
Eric Eisner
Andrew Eland
Julien Élie
Eduardo Elizondo
Lance Ellinghaus
Daniel Ellis
Phil Elson
...
...
Misc/NEWS.d/next/Build/2018-02-21-12-46-00.bpo-32898.M15bZh.rst
0 → 100644
Dosyayı görüntüle @
745dc65b
Fix the python debug build when using COUNT_ALLOCS.
Objects/listobject.c
Dosyayı görüntüle @
745dc65b
...
...
@@ -86,7 +86,7 @@ static void
show_alloc
(
void
)
{
PyInterpreterState
*
interp
=
PyThreadState_GET
()
->
interp
;
if
(
!
inter
->
core_config
.
show_alloc_count
)
{
if
(
!
inter
p
->
core_config
.
show_alloc_count
)
{
return
;
}
...
...
Objects/object.c
Dosyayı görüntüle @
745dc65b
...
...
@@ -97,10 +97,11 @@ void
dump_counts
(
FILE
*
f
)
{
PyInterpreterState
*
interp
=
PyThreadState_GET
()
->
interp
;
if
(
!
inter
->
core_config
.
show_alloc_count
)
{
if
(
!
inter
p
->
core_config
.
show_alloc_count
)
{
return
;
}
PyTypeObject
*
tp
;
for
(
tp
=
type_list
;
tp
;
tp
=
tp
->
tp_next
)
fprintf
(
f
,
"%s alloc'd: %"
PY_FORMAT_SIZE_T
"d, "
"freed: %"
PY_FORMAT_SIZE_T
"d, "
...
...
Objects/tupleobject.c
Dosyayı görüntüle @
745dc65b
...
...
@@ -45,7 +45,7 @@ static void
show_track
(
void
)
{
PyInterpreterState
*
interp
=
PyThreadState_GET
()
->
interp
;
if
(
!
inter
->
core_config
.
show_alloc_count
)
{
if
(
!
inter
p
->
core_config
.
show_alloc_count
)
{
return
;
}
...
...
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