(self)
| 5751 | tp.foo = 1 |
| 5752 | |
| 5753 | def test_c_disallow_instantiation(self): |
| 5754 | ContextManager = type(C.localcontext()) |
| 5755 | check_disallow_instantiation(self, ContextManager) |
| 5756 | |
| 5757 | def test_c_signaldict_segfault(self): |
| 5758 | # See gh-106263 for details. |
nothing calls this directly
no test coverage detected