diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2021-10-16 19:16:08 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-16 19:16:08 (GMT) |
commit | b9cdd0fb9c463c2503a4d854bb6529a9db58fe1b (patch) | |
tree | c6ce34fda3658787cefa1b0c88721216637ba657 /Misc/NEWS.d | |
parent | fe0d9e22a52a10c4cbe52254b51f2d4e74d83568 (diff) | |
download | cpython-b9cdd0fb9c463c2503a4d854bb6529a9db58fe1b.zip cpython-b9cdd0fb9c463c2503a4d854bb6529a9db58fe1b.tar.gz cpython-b9cdd0fb9c463c2503a4d854bb6529a9db58fe1b.tar.bz2 |
bpo-45020: Default to using frozen modules unless running from source tree. (gh-28940)
The default was "off". Switching it to "on" means users get the benefit of frozen stdlib modules without having to do anything. There's a special-case for running-in-source-tree, so contributors don't get surprised when their stdlib changes don't get used.
https://bugs.python.org/issue45020
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/3.11.0a1.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS.d/3.11.0a1.rst b/Misc/NEWS.d/3.11.0a1.rst index e3d2acc..a64a3e7 100644 --- a/Misc/NEWS.d/3.11.0a1.rst +++ b/Misc/NEWS.d/3.11.0a1.rst @@ -262,7 +262,7 @@ Compiler now removes trailing unused constants from co_consts. Add a new command line option, "-X frozen_modules=[on|off]" to opt out of (or into) using optional frozen modules. This defaults to "on" (or "off" if -it's a debug build). +it's running out of the source tree). .. |