mirror of
https://github.com/python/cpython.git
synced 2025-11-08 21:52:45 +00:00
remove unused flag (closes #16505)
This commit is contained in:
parent
de0b962998
commit
e5b45cc5e5
2 changed files with 2 additions and 1 deletions
|
|
@ -632,7 +632,6 @@ given type object has a specified feature.
|
||||||
#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
|
#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
|
||||||
|
|
||||||
/* These flags are used to determine if a type is a subclass. */
|
/* 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_LONG_SUBCLASS (1UL << 24)
|
||||||
#define Py_TPFLAGS_LIST_SUBCLASS (1UL << 25)
|
#define Py_TPFLAGS_LIST_SUBCLASS (1UL << 25)
|
||||||
#define Py_TPFLAGS_TUPLE_SUBCLASS (1UL << 26)
|
#define Py_TPFLAGS_TUPLE_SUBCLASS (1UL << 26)
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,8 @@ What's New in Python 3.4.0 Alpha 1?
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
|
- Issue #16505: Remove unused Py_TPFLAGS_INT_SUBCLASS.
|
||||||
|
|
||||||
- Issue #16306: Fix multiple error messages when unknown command line
|
- Issue #16306: Fix multiple error messages when unknown command line
|
||||||
parameters where passed to the interpreter. Patch by Hieu Nguyen.
|
parameters where passed to the interpreter. Patch by Hieu Nguyen.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue