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