diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-05-08 19:35:16 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 19:35:16 (GMT) |
commit | 05c2fe1acda9ea5a57061642c36e8b73bb4fbba4 (patch) | |
tree | 5b772347155d51f9796ebd4df456858edbd16fc7 /Doc/library/csv.rst | |
parent | bcb435ee8ff41b5ec5d879ee0b6651f146a66151 (diff) | |
download | cpython-05c2fe1acda9ea5a57061642c36e8b73bb4fbba4.zip cpython-05c2fe1acda9ea5a57061642c36e8b73bb4fbba4.tar.gz cpython-05c2fe1acda9ea5a57061642c36e8b73bb4fbba4.tar.bz2 |
Format None, True, False and NotImplemented as literals (GH-118758)
Diffstat (limited to 'Doc/library/csv.rst')
-rw-r--r-- | Doc/library/csv.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 3ed1997..533cdf1 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -349,8 +349,8 @@ The :mod:`csv` module defines the following constants: ``None``. This is similar to :data:`QUOTE_ALL`, except that if a field value is ``None`` an empty (unquoted) string is written. - Instructs :class:`reader` objects to interpret an empty (unquoted) field as None and - to otherwise behave as :data:`QUOTE_ALL`. + Instructs :class:`reader` objects to interpret an empty (unquoted) field + as ``None`` and to otherwise behave as :data:`QUOTE_ALL`. .. versionadded:: 3.12 |