Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de0b962 commit e5b45ccCopy full SHA for e5b45cc
2 files changed
Include/object.h
@@ -632,7 +632,6 @@ given type object has a specified feature.
632
#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
633
634
/* These flags are used to determine if a type is a subclass. */
635
-#define Py_TPFLAGS_INT_SUBCLASS (1UL << 23)
636
#define Py_TPFLAGS_LONG_SUBCLASS (1UL << 24)
637
#define Py_TPFLAGS_LIST_SUBCLASS (1UL << 25)
638
#define Py_TPFLAGS_TUPLE_SUBCLASS (1UL << 26)
Misc/NEWS
@@ -10,6 +10,8 @@ What's New in Python 3.4.0 Alpha 1?
10
Core and Builtins
11
-----------------
12
13
+- Issue #16505: Remove unused Py_TPFLAGS_INT_SUBCLASS.
14
+
15
- Issue #16306: Fix multiple error messages when unknown command line
16
parameters where passed to the interpreter. Patch by Hieu Nguyen.
17
0 commit comments