(self)
| 1128 | raise NotImplementedError |
| 1129 | |
| 1130 | def setUp(self): |
| 1131 | super().setUp() |
| 1132 | self.loop = self.new_test_loop() |
| 1133 | self.addCleanup(self.loop.close) |
| 1134 | |
| 1135 | def test_inherit_without_calling_super_init(self): |
| 1136 | # See https://bugs.python.org/issue38785 for the context |
nothing calls this directly
no test coverage detected