[Python-checkins] gh-67230: document new csv quoting modes in whatsnew (gh-103491)

merwok webhook-mailer at python.org
Wed Apr 12 20:45:59 EDT 2023


https://github.com/python/cpython/commit/fb38c1b52e77ffe6e8a02bfc01bd112dcd7e6d95
commit: fb38c1b52e77ffe6e8a02bfc01bd112dcd7e6d95
branch: main
author: Skip Montanaro <skip.montanaro at gmail.com>
committer: merwok <merwok at netwok.org>
date: 2023-04-12T20:45:52-04:00
summary:

gh-67230: document new csv quoting modes in whatsnew (gh-103491)

files:
M Doc/whatsnew/3.12.rst

diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst
index c7fc7d229cd7..4165b16ba764 100644
--- a/Doc/whatsnew/3.12.rst
+++ b/Doc/whatsnew/3.12.rst
@@ -253,6 +253,13 @@ asyncio
 * :func:`asyncio.wait` now accepts generators yielding tasks.
   (Contributed by Kumar Aditya in :gh:`78530`.)
 
+csv
+---
+
+* Add :data:`~csv.QUOTE_NOTNULL` and :data:`~csv.QUOTE_STRINGS` flags to
+  provide finer grained control of ``None`` and empty strings by
+  :class:`~csv.reader` and :class:`~csv.writer` objects.
+
 inspect
 -------
 



More information about the Python-checkins mailing list