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
19620c57
Kaydet (Commit)
19620c57
authored
Nis 20, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
gdb/libpython.py: inline _type_void_ptr()
The function was only called in _sizeof_void_p()
üst
d7a71224
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
10 deletions
+4
-10
libpython.py
Tools/gdb/libpython.py
+4
-10
No files found.
Tools/gdb/libpython.py
Dosyayı görüntüle @
19620c57
...
...
@@ -59,7 +59,6 @@ if sys.version_info[0] >= 3:
# Those need to be refreshed as types (pointer sizes) may change when
# gdb loads different executables
def
_type_char_ptr
():
return
gdb
.
lookup_type
(
'char'
)
.
pointer
()
# char*
...
...
@@ -68,10 +67,6 @@ def _type_unsigned_char_ptr():
return
gdb
.
lookup_type
(
'unsigned char'
)
.
pointer
()
# unsigned char*
def
_type_void_ptr
():
return
gdb
.
lookup_type
(
'void'
)
.
pointer
()
# void*
def
_type_unsigned_short_ptr
():
return
gdb
.
lookup_type
(
'unsigned short'
)
.
pointer
()
...
...
@@ -79,16 +74,15 @@ def _type_unsigned_short_ptr():
def
_type_unsigned_int_ptr
():
return
gdb
.
lookup_type
(
'unsigned int'
)
.
pointer
()
# value computed later, see PyUnicodeObjectPtr.proxy()
_is_pep393
=
None
def
_sizeof_void_p
():
return
_type_void_pt
r
()
.
sizeof
return
gdb
.
lookup_type
(
'void'
)
.
pointe
r
()
.
sizeof
Py_TPFLAGS_HEAPTYPE
=
(
1
<<
9
)
# value computed later, see PyUnicodeObjectPtr.proxy()
_is_pep393
=
None
Py_TPFLAGS_HEAPTYPE
=
(
1
<<
9
)
Py_TPFLAGS_LONG_SUBCLASS
=
(
1
<<
24
)
Py_TPFLAGS_LIST_SUBCLASS
=
(
1
<<
25
)
Py_TPFLAGS_TUPLE_SUBCLASS
=
(
1
<<
26
)
...
...
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