diff options
author | Skip Montanaro <skip.montanaro@gmail.com> | 2023-04-12 22:32:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-12 22:32:30 (GMT) |
commit | 330a942b6303c889d0f42f23d5ae2b42af92ecc4 (patch) | |
tree | 9cadad6696562afb944bd5b9b67f010148a08c99 /Misc/NEWS.d | |
parent | 2b6e8777672da03f5d5cd12366e8378e47c550da (diff) | |
download | cpython-330a942b6303c889d0f42f23d5ae2b42af92ecc4.zip cpython-330a942b6303c889d0f42f23d5ae2b42af92ecc4.tar.gz cpython-330a942b6303c889d0f42f23d5ae2b42af92ecc4.tar.bz2 |
gh-67230: add quoting rules to csv module (GH-29469)
Add two quoting styles for csv dialects.
They will help to work with certain databases in particular.
Automerge-Triggered-By: GH:merwok
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-11-07-15-31-25.bpo-23041.564i32.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-11-07-15-31-25.bpo-23041.564i32.rst b/Misc/NEWS.d/next/Library/2021-11-07-15-31-25.bpo-23041.564i32.rst new file mode 100644 index 0000000..53c32d3 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-11-07-15-31-25.bpo-23041.564i32.rst @@ -0,0 +1,2 @@ +Add :data:`~csv.QUOTE_STRINGS` and :data:`~csv.QUOTE_NOTNULL` to the suite +of :mod:`csv` module quoting styles. |