mirror of https://github.com/python/cpython
Remove unused code that would raise a NameError.
This commit is contained in:
parent
49b31d0a0b
commit
b0eb5da018
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue