diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-01-30 12:21:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-30 12:21:12 (GMT) |
commit | ea30a28c3e89b69a214c536e61402660242c0f2a (patch) | |
tree | 54e8f060dd981c497e333e65cc8c76cf2363bb5b /Doc | |
parent | 58f883b91bd8dd4cac38b58a026397363104a129 (diff) | |
download | cpython-ea30a28c3e89b69a214c536e61402660242c0f2a.zip cpython-ea30a28c3e89b69a214c536e61402660242c0f2a.tar.gz cpython-ea30a28c3e89b69a214c536e61402660242c0f2a.tar.bz2 |
gh-113732: Fix support of QUOTE_NOTNULL and QUOTE_STRINGS in csv.reader (GH-113738)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.12.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.12.rst b/Doc/whatsnew/3.12.rst index 77b12f9..100312a 100644 --- a/Doc/whatsnew/3.12.rst +++ b/Doc/whatsnew/3.12.rst @@ -690,7 +690,7 @@ csv * Add :const:`csv.QUOTE_NOTNULL` and :const:`csv.QUOTE_STRINGS` flags to provide finer grained control of ``None`` and empty strings by - :class:`csv.writer` objects. + :class:`~csv.reader` and :class:`~csv.writer` objects. dis --- |