(self)
| 4766 | self.assertRegex(repr(module), r"<clinic.Module 'foo' at \d+>") |
| 4767 | |
| 4768 | def test_Class_repr(self): |
| 4769 | cls = Class("foo", _make_clinic(), None, 'some_typedef', 'some_type_object') |
| 4770 | self.assertRegex(repr(cls), r"<clinic.Class 'foo' at \d+>") |
| 4771 | |
| 4772 | def test_FunctionKind_repr(self): |
| 4773 | self.assertEqual( |
nothing calls this directly
no test coverage detected