Commit b0eb5da0 authored by Georg Brandl's avatar Georg Brandl

Remove unused code that would raise a NameError.

parent 49b31d0a
...@@ -55,7 +55,6 @@ SIZEOF_VOID_P = _type_void_ptr.sizeof ...@@ -55,7 +55,6 @@ SIZEOF_VOID_P = _type_void_ptr.sizeof
Py_TPFLAGS_HEAPTYPE = (1L << 9) Py_TPFLAGS_HEAPTYPE = (1L << 9)
Py_TPFLAGS_INT_SUBCLASS = (1L << 23)
Py_TPFLAGS_LONG_SUBCLASS = (1L << 24) Py_TPFLAGS_LONG_SUBCLASS = (1L << 24)
Py_TPFLAGS_LIST_SUBCLASS = (1L << 25) Py_TPFLAGS_LIST_SUBCLASS = (1L << 25)
Py_TPFLAGS_TUPLE_SUBCLASS = (1L << 26) Py_TPFLAGS_TUPLE_SUBCLASS = (1L << 26)
...@@ -312,8 +311,6 @@ class PyObjectPtr(object): ...@@ -312,8 +311,6 @@ class PyObjectPtr(object):
if tp_flags & Py_TPFLAGS_HEAPTYPE: if tp_flags & Py_TPFLAGS_HEAPTYPE:
return HeapTypeObjectPtr return HeapTypeObjectPtr
if tp_flags & Py_TPFLAGS_INT_SUBCLASS:
return PyIntObjectPtr
if tp_flags & Py_TPFLAGS_LONG_SUBCLASS: if tp_flags & Py_TPFLAGS_LONG_SUBCLASS:
return PyLongObjectPtr return PyLongObjectPtr
if tp_flags & Py_TPFLAGS_LIST_SUBCLASS: if tp_flags & Py_TPFLAGS_LIST_SUBCLASS:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment