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
9ad8a639
Kaydet (Commit)
9ad8a639
authored
Kas 22, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge 3.6
üst
ff33c93f
3a5d79fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
libpython.py
Tools/gdb/libpython.py
+6
-2
No files found.
Tools/gdb/libpython.py
Dosyayı görüntüle @
9ad8a639
...
...
@@ -709,6 +709,7 @@ class PyDictObjectPtr(PyObjectPtr):
out
.
write
(
'}'
)
def
_get_entries
(
self
,
keys
):
dk_nentries
=
int
(
keys
[
'dk_nentries'
])
dk_size
=
int
(
keys
[
'dk_size'
])
try
:
# <= Python 3.5
...
...
@@ -726,9 +727,12 @@ class PyDictObjectPtr(PyObjectPtr):
else
:
offset
=
8
*
dk_size
ent_addr
=
keys
[
'dk_indices'
][
'as_1'
]
.
address
ent_addr
=
ent_addr
.
cast
(
_type_unsigned_char_ptr
())
+
offset
ent_ptr_t
=
gdb
.
lookup_type
(
'PyDictKeyEntry'
)
.
pointer
()
ent_addr
=
int
(
keys
[
'dk_indices'
][
'as_1'
]
.
address
)
+
offset
return
gdb
.
Value
(
ent_addr
)
.
cast
(
ent_ptr_t
),
int
(
keys
[
'dk_nentries'
])
ent_addr
=
ent_addr
.
cast
(
ent_ptr_t
)
return
ent_addr
,
dk_nentries
class
PyListObjectPtr
(
PyObjectPtr
):
...
...
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