diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-07-21 11:51:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 11:51:00 (GMT) |
commit | ffc7678f4683a63180c1321334c76e9b3e09b0a5 (patch) | |
tree | d30f26c7bf420a4c41b656b2e3e8e8c48a9242cf /Doc/library/devmode.rst | |
parent | 84e52171b541ecc01f2d738cf82f5d4199a4bce7 (diff) | |
download | cpython-ffc7678f4683a63180c1321334c76e9b3e09b0a5.zip cpython-ffc7678f4683a63180c1321334c76e9b3e09b0a5.tar.gz cpython-ffc7678f4683a63180c1321334c76e9b3e09b0a5.tar.bz2 |
[3.12] gh-106892: Use roles :data: and :const: for referencing module variables (GH-106894) (GH-106954)
(cherry picked from commit d036db728ea3d54509cbad06df74e2d9a31fbec8)
Diffstat (limited to 'Doc/library/devmode.rst')
-rw-r--r-- | Doc/library/devmode.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/devmode.rst b/Doc/library/devmode.rst index 80ac13b..914aa45 100644 --- a/Doc/library/devmode.rst +++ b/Doc/library/devmode.rst @@ -81,7 +81,7 @@ Effects of the Python Development Mode: ignored for empty strings. * The :class:`io.IOBase` destructor logs ``close()`` exceptions. -* Set the :attr:`~sys.flags.dev_mode` attribute of :attr:`sys.flags` to +* Set the :attr:`~sys.flags.dev_mode` attribute of :data:`sys.flags` to ``True``. The Python Development Mode does not enable the :mod:`tracemalloc` module by |