(self)
| 1656 | |
| 1657 | @support.cpython_only |
| 1658 | def test_disallow_instantiation(self): |
| 1659 | _csv = import_helper.import_module("_csv") |
| 1660 | for tp in _csv.Reader, _csv.Writer: |
| 1661 | with self.subTest(tp=tp): |
| 1662 | check_disallow_instantiation(self, tp) |
| 1663 | |
| 1664 | if __name__ == '__main__': |
| 1665 | unittest.main() |
nothing calls this directly
no test coverage detected