From: Skip Montanaro Date: Thu, 13 Apr 2023 00:45:52 +0000 (-0500) Subject: gh-67230: document new csv quoting modes in whatsnew (gh-103491) X-Git-Tag: v3.12.0b1~551 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb38c1b52e77ffe6e8a02bfc01bd112dcd7e6d95;p=thirdparty%2FPython%2Fcpython.git gh-67230: document new csv quoting modes in whatsnew (gh-103491) --- 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 -------