From: Prometheus3375 <35541026+Prometheus3375@users.noreply.github.com> Date: Thu, 31 Oct 2024 00:08:28 +0000 (+0300) Subject: [3.12] gh-116633: Add a note about buggy behavior of csv.QUOTE_NOTNULL and csv.QUOTE_... X-Git-Tag: v3.12.8~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6bfe5fbc19b96d6dc4c5f5f45bbb1acde45ade8f;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-116633: Add a note about buggy behavior of csv.QUOTE_NOTNULL and csv.QUOTE_STRINGS (GH-117235) * Add a note about bug * Properly link constants --- diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 533cdf13974b..8e432078e194 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -365,6 +365,12 @@ The :mod:`csv` module defines the following constants: .. versionadded:: 3.12 +.. note:: + + Due to a bug, constants :data:`QUOTE_NOTNULL` and :data:`QUOTE_STRINGS` + do not affect behaviour of :class:`reader` objects. + This bug is fixed in Python 3.13. + The :mod:`csv` module defines the following exception: