(self)
| 695 | csv.unregister_dialect('testC') |
| 696 | |
| 697 | def test_copy(self): |
| 698 | for name in csv.list_dialects(): |
| 699 | dialect = csv.get_dialect(name) |
| 700 | self.assertRaises(TypeError, copy.copy, dialect) |
| 701 | |
| 702 | def test_pickle(self): |
| 703 | for name in csv.list_dialects(): |
nothing calls this directly
no test coverage detected