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/test.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/test.rst')
-rw-r--r-- | Doc/library/test.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/test.rst b/Doc/library/test.rst index 0fff1a0..2a61f0a 100644 --- a/Doc/library/test.rst +++ b/Doc/library/test.rst @@ -324,7 +324,7 @@ The :mod:`test.support` module defines the following constants: .. data:: Py_DEBUG - True if Python was built with the :c:macro:`Py_DEBUG` macro + ``True`` if Python was built with the :c:macro:`Py_DEBUG` macro defined, that is, if Python was :ref:`built in debug mode <debug-build>`. |