| 643 | |
| 644 | def test_space_dialect(self): |
| 645 | class space(csv.excel): |
| 646 | delimiter = " " |
| 647 | quoting = csv.QUOTE_NONE |
| 648 | escapechar = "\\" |
| 649 | |
| 650 | with TemporaryFile("w+", encoding="utf-8") as fileobj: |
| 651 | fileobj.write("abc def\nc1ccccc1 benzene\n") |
no outgoing calls