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.
test_flags
1 parent fd8e8e6 commit 63aff56Copy full SHA for 63aff56
Lib/test/test_class.py
@@ -885,10 +885,6 @@ class VarSizedSubclass(tuple):
885
886
class TestInlineValues(unittest.TestCase):
887
888
- def test_flags(self):
889
- self.assertEqual(Plain.__flags__ & Py_TPFLAGS_MANAGED_DICT, Py_TPFLAGS_MANAGED_DICT)
890
- self.assertEqual(WithAttrs.__flags__ & Py_TPFLAGS_MANAGED_DICT, Py_TPFLAGS_MANAGED_DICT)
891
-
892
def test_no_flags_for_slots_class(self):
893
flags = NoManagedDict.__flags__
894
self.assertEqual(flags & Py_TPFLAGS_MANAGED_DICT, 0)
0 commit comments