Skip to content

Commit

Permalink
gh-67230: Add versionadded notes for QUOTE_NOTNULL and QUOTE_STRINGS (#…
Browse files Browse the repository at this point in the history
…114816)

As @GPHemsley pointed out, #29469 omitted `versionadded` notes for the 2 new items.
  • Loading branch information
smontanaro committed Feb 1, 2024
1 parent ff8939e commit 586057e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Doc/library/csv.rst
Expand Up @@ -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
to otherwise behave as :data:`QUOTE_ALL`.

.. versionadded:: 3.12

.. data:: QUOTE_STRINGS

Instructs :class:`writer` objects to always place quotes around fields
Expand All @@ -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
to otherwise behave as :data:`QUOTE_NONNUMERIC`.

.. versionadded:: 3.12

The :mod:`csv` module defines the following exception:


Expand Down

0 comments on commit 586057e

Please sign in to comment.