diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-11-30 11:40:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-30 11:40:24 +0100 |
commit | 5e3806f8cfd84722fc55d4299dc018ad9b0f8401 (patch) | |
tree | 436f0a963001f590a1193dba5c84627ba59513c2 /Doc/library/development.rst | |
parent | 706e10b186992e086e661a62d2c8ec9588525b31 (diff) | |
download | cpython-git-5e3806f8cfd84722fc55d4299dc018ad9b0f8401.tar.gz |
bpo-32101: Add PYTHONDEVMODE environment variable (#4624)
* bpo-32101: Add sys.flags.dev_mode flag
Rename also the "Developer mode" to the "Development mode".
* bpo-32101: Add PYTHONDEVMODE environment variable
Mention it in the development chapiter.
Diffstat (limited to 'Doc/library/development.rst')
-rw-r--r-- | Doc/library/development.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/development.rst b/Doc/library/development.rst index d2b5fa2aa4..ab34e1f7ce 100644 --- a/Doc/library/development.rst +++ b/Doc/library/development.rst @@ -24,3 +24,6 @@ The list of modules described in this chapter is: unittest.mock-examples.rst 2to3.rst test.rst + +See also the Python development mode: the :option:`-X` ``dev`` option and +:envvar:`PYTHONDEVMODE` environment variable. |