[issue23041] csv needs more quoting rules

2022-02-03 Thread Miha Šetina
Miha Šetina added the comment: Is this still on track for python 3.11? -- ___ Python tracker <https://bugs.python.org/issue23041> ___ ___ Python-bugs-list mailin

[issue23041] csv needs more quoting rules

2021-11-09 Thread Miha Šetina
Miha Šetina added the comment: I would say that it should follow a rule: both cases values of None are output as an empty field so empty filed should map to None with both QUOTE_NOTNULL and QUOTE_STRINGS that would make: ["", None, 1, "a"] for QUOTE_STRINGS in effect.

[issue23041] csv needs more quoting rules

2021-09-10 Thread Miha Šetina
Miha Šetina added the comment: The MS Synapse has a CSV support in its COPY command that would benefit from the proposed csv.QUOTE_NOTNULL as it can be used when preparing data for import. As they reference the same RFC the CSV modul should support, both the proposed modifications would