summaryrefslogtreecommitdiff
path: root/Tools/gdb
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-14 08:53:36 +0000
committerGeorg Brandl <georg@python.org>2010-07-14 08:53:36 +0000
commit4932e692649bd9ff1d1e64d9bdf950e7ada0887f (patch)
treeb5afb470828f27d37a6b656bfe935a254b1605da /Tools/gdb
parent928c7a10d230c0b29c94ae0b7b152f9ec49f4e71 (diff)
downloadcpython-4932e692649bd9ff1d1e64d9bdf950e7ada0887f.tar.gz
Remove unused code that would raise a NameError.
Diffstat (limited to 'Tools/gdb')
-rw-r--r--Tools/gdb/libpython.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Tools/gdb/libpython.py b/Tools/gdb/libpython.py
index 6ed608721f..0d599811d9 100644
--- a/Tools/gdb/libpython.py
+++ b/Tools/gdb/libpython.py
@@ -55,7 +55,6 @@ SIZEOF_VOID_P = _type_void_ptr.sizeof
Py_TPFLAGS_HEAPTYPE = (1L << 9)
-Py_TPFLAGS_INT_SUBCLASS = (1L << 23)
Py_TPFLAGS_LONG_SUBCLASS = (1L << 24)
Py_TPFLAGS_LIST_SUBCLASS = (1L << 25)
Py_TPFLAGS_TUPLE_SUBCLASS = (1L << 26)
@@ -312,8 +311,6 @@ class PyObjectPtr(object):
if tp_flags & Py_TPFLAGS_HEAPTYPE:
return HeapTypeObjectPtr
- if tp_flags & Py_TPFLAGS_INT_SUBCLASS:
- return PyIntObjectPtr
if tp_flags & Py_TPFLAGS_LONG_SUBCLASS:
return PyLongObjectPtr
if tp_flags & Py_TPFLAGS_LIST_SUBCLASS: