[3.12] gh-67230: Add versionadded notes for QUOTE_NOTNULL and QUOTE_STRINGS (GH-114816) (#114840)

As @GPHemsley pointed out, GH-29469 omitted `versionadded` notes for the 2 new items.
(cherry picked from commit 586057e9f8)

Co-authored-by: Skip Montanaro <skip.montanaro@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-02-01 04:17:56 +01:00 committed by GitHub
parent 203106def2
commit c26decab6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -351,6 +351,8 @@ The :mod:`csv` module defines the following constants:
Instructs :class:`reader` objects to interpret an empty (unquoted) field as None and Instructs :class:`reader` objects to interpret an empty (unquoted) field as None and
to otherwise behave as :data:`QUOTE_ALL`. to otherwise behave as :data:`QUOTE_ALL`.
.. versionadded:: 3.12
.. data:: QUOTE_STRINGS .. data:: QUOTE_STRINGS
Instructs :class:`writer` objects to always place quotes around fields Instructs :class:`writer` objects to always place quotes around fields
@ -360,6 +362,8 @@ The :mod:`csv` module defines the following constants:
Instructs :class:`reader` objects to interpret an empty (unquoted) string as ``None`` and Instructs :class:`reader` objects to interpret an empty (unquoted) string as ``None`` and
to otherwise behave as :data:`QUOTE_NONNUMERIC`. to otherwise behave as :data:`QUOTE_NONNUMERIC`.
.. versionadded:: 3.12
The :mod:`csv` module defines the following exception: The :mod:`csv` module defines the following exception: