(self)
| 1692 | |
| 1693 | @support.cpython_only |
| 1694 | def test_disallow_instantiation(self): |
| 1695 | _csv = import_helper.import_module("_csv") |
| 1696 | for tp in _csv.Reader, _csv.Writer: |
| 1697 | with self.subTest(tp=tp): |
| 1698 | check_disallow_instantiation(self, tp) |
| 1699 | |
| 1700 | |
| 1701 | class TestModule(unittest.TestCase): |
nothing calls this directly
no test coverage detected