summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.7.rst
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-01-24 09:22:18 (GMT)
committerGitHub <noreply@github.com>2020-01-24 09:22:18 (GMT)
commitb9783d2e035d2babe8fcd9ec109044c0002c18a2 (patch)
tree8ff79a1298440a3956717b92451df180388e1bc0 /Doc/whatsnew/3.7.rst
parente131c9720d087c0c4988bd2a5c62020feb9d1d77 (diff)
downloadcpython-b9783d2e035d2babe8fcd9ec109044c0002c18a2.zip
cpython-b9783d2e035d2babe8fcd9ec109044c0002c18a2.tar.gz
cpython-b9783d2e035d2babe8fcd9ec109044c0002c18a2.tar.bz2
bpo-39429: Add a new "Python Development Mode" doc page (GH-18132)
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r--Doc/whatsnew/3.7.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 8a70fe2..04cfa57 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -102,7 +102,7 @@ CPython implementation improvements:
* :ref:`PEP 538 <whatsnew37-pep538>`, legacy C locale coercion
* :ref:`PEP 540 <whatsnew37-pep540>`, forced UTF-8 runtime mode
* :ref:`PEP 552 <whatsnew37-pep552>`, deterministic .pycs
-* :ref:`the new development runtime mode <whatsnew37-devmode>`
+* :ref:`New Python Development Mode <whatsnew37-devmode>`
* :ref:`PEP 565 <whatsnew37-pep565>`, improved :exc:`DeprecationWarning`
handling
@@ -479,15 +479,15 @@ Three new translations have been added:
.. _whatsnew37-devmode:
-Development Runtime Mode: -X dev
+Python Development Mode (-X dev)
--------------------------------
The new :option:`-X` ``dev`` command line option or the new
:envvar:`PYTHONDEVMODE` environment variable can be used to enable
-CPython's *development mode*. When in development mode, CPython performs
+:ref:`Python Development Mode <devmode>`. When in development mode, Python performs
additional runtime checks that are too expensive to be enabled by default.
-See :option:`-X` ``dev`` documentation for the full description of the effects
-of this mode.
+See :ref:`Python Development Mode <devmode>` documentation for the full
+description.
Other Language Changes