From 6bfe5fbc19b96d6dc4c5f5f45bbb1acde45ade8f Mon Sep 17 00:00:00 2001 From: Prometheus3375 <35541026+Prometheus3375@users.noreply.github.com> Date: Thu, 31 Oct 2024 03:08:28 +0300 Subject: [PATCH] [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 --- Doc/library/csv.rst | 6 ++++++ 1 file changed, 6 insertions(+) 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: -- 2.47.3