| 640 | |
| 641 | # Mutable heap types should not inherit Py_TPFLAGS_METHOD_DESCRIPTOR |
| 642 | class MethodDescriptorHeap(_testcapi.MethodDescriptorBase): |
| 643 | pass |
| 644 | self.assertFalse(MethodDescriptorHeap.__flags__ & Py_TPFLAGS_METHOD_DESCRIPTOR) |
| 645 | |
| 646 | def test_vectorcall_flag(self): |
no outgoing calls