diff options
author | Victor Stinner <vstinner@python.org> | 2020-06-17 23:11:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-17 23:11:46 (GMT) |
commit | 1bf7959dce0597e312c6f35476a7cc957fd0323c (patch) | |
tree | 627f5b3021d83ee6f08f694618356b2341fdc3a9 /Misc | |
parent | 4c18fc8f1def7030e5ec5d1ffb9355d7453dc408 (diff) | |
download | cpython-1bf7959dce0597e312c6f35476a7cc957fd0323c.zip cpython-1bf7959dce0597e312c6f35476a7cc957fd0323c.tar.gz cpython-1bf7959dce0597e312c6f35476a7cc957fd0323c.tar.bz2 |
bpo-41006: Remove init_sys_streams() hack (GH-20954)
The encodings.latin_1 module is no longer imported at startup. Now it
is only imported when it is the filesystem encoding or the stdio encoding.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-06-18-00-07-09.bpo-41006.H-wN-d.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-06-18-00-07-09.bpo-41006.H-wN-d.rst b/Misc/NEWS.d/next/Core and Builtins/2020-06-18-00-07-09.bpo-41006.H-wN-d.rst new file mode 100644 index 0000000..4593e6b --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-06-18-00-07-09.bpo-41006.H-wN-d.rst @@ -0,0 +1,2 @@ +The ``encodings.latin_1`` module is no longer imported at startup. Now it is +only imported when it is the filesystem encoding or the stdio encoding. |