summaryrefslogtreecommitdiffstats
path: root/Include/object.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-11-19 02:49:39 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-11-19 02:49:39 (GMT)
commite5b45cc5e51972dde96d418b445a89e8d9d7f149 (patch)
tree765c23a5b1a2fd6f5636769723dcb231d3339d2d /Include/object.h
parentde0b962998af69dff474ec99b7627bcee496d48e (diff)
downloadcpython-e5b45cc5e51972dde96d418b445a89e8d9d7f149.zip
cpython-e5b45cc5e51972dde96d418b445a89e8d9d7f149.tar.gz
cpython-e5b45cc5e51972dde96d418b445a89e8d9d7f149.tar.bz2
remove unused flag (closes #16505)
Diffstat (limited to 'Include/object.h')
-rw-r--r--Include/object.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h
index 36d63af..ad58450 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -632,7 +632,6 @@ given type object has a specified feature.
#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
/* These flags are used to determine if a type is a subclass. */
-#define Py_TPFLAGS_INT_SUBCLASS (1UL << 23)
#define Py_TPFLAGS_LONG_SUBCLASS (1UL << 24)
#define Py_TPFLAGS_LIST_SUBCLASS (1UL << 25)
#define Py_TPFLAGS_TUPLE_SUBCLASS (1UL << 26)