]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
remove unused flag (closes #16505)
authorBenjamin Peterson <benjamin@python.org>
Mon, 19 Nov 2012 02:49:39 +0000 (20:49 -0600)
committerBenjamin Peterson <benjamin@python.org>
Mon, 19 Nov 2012 02:49:39 +0000 (20:49 -0600)
Include/object.h
Misc/NEWS

index 36d63afc882d13f8616991eaf79182be76d5fb5b..ad58450fb910bfa1ec6b0c342fea9c9ba5ac7311 100644 (file)
@@ -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)
index 3e48036d38a1ee199270bb7b08ca0767b0238237..e3f502473ba11242397e62396804c14fd0c1b3c0 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.4.0 Alpha 1?
 Core and Builtins
 -----------------
 
+- Issue #16505: Remove unused Py_TPFLAGS_INT_SUBCLASS.
+
 - Issue #16306: Fix multiple error messages when unknown command line
   parameters where passed to the interpreter.  Patch by Hieu Nguyen.