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

This commit is contained in:
Skip Montanaro 2023-04-12 19:45:52 -05:00 committed by GitHub
parent 330a942b63
commit fb38c1b52e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
-------