Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e5b45cc

Browse files
committed
remove unused flag (closes #16505)
1 parent de0b962 commit e5b45cc

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Include/object.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,6 @@ given type object has a specified feature.
632632
#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
633633

634634
/* These flags are used to determine if a type is a subclass. */
635-
#define Py_TPFLAGS_INT_SUBCLASS (1UL << 23)
636635
#define Py_TPFLAGS_LONG_SUBCLASS (1UL << 24)
637636
#define Py_TPFLAGS_LIST_SUBCLASS (1UL << 25)
638637
#define Py_TPFLAGS_TUPLE_SUBCLASS (1UL << 26)

Misc/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ What's New in Python 3.4.0 Alpha 1?
1010
Core and Builtins
1111
-----------------
1212

13+
- Issue #16505: Remove unused Py_TPFLAGS_INT_SUBCLASS.
14+
1315
- Issue #16306: Fix multiple error messages when unknown command line
1416
parameters where passed to the interpreter. Patch by Hieu Nguyen.
1517

0 commit comments

Comments
 (0)