From: Benjamin Peterson Date: Mon, 19 Nov 2012 02:49:39 +0000 (-0600) Subject: remove unused flag (closes #16505) X-Git-Tag: v3.4.0a1~1973 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e5b45cc5e51972dde96d418b445a89e8d9d7f149;p=thirdparty%2FPython%2Fcpython.git remove unused flag (closes #16505) --- diff --git a/Include/object.h b/Include/object.h index 36d63afc882d..ad58450fb910 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) diff --git a/Misc/NEWS b/Misc/NEWS index 3e48036d38a1..e3f502473ba1 100644 --- 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.