diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-03-17 21:38:41 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-03-17 21:38:41 (GMT) |
commit | d6a91a7ab69fe449259d8719acf63cca9af45ba0 (patch) | |
tree | 417a68e33635f534e1f3d4cd4333de832622af3e /Misc | |
parent | 2a6053468ea318acc2b382808f858d853cf3a89a (diff) | |
download | cpython-d6a91a7ab69fe449259d8719acf63cca9af45ba0.zip cpython-d6a91a7ab69fe449259d8719acf63cca9af45ba0.tar.gz cpython-d6a91a7ab69fe449259d8719acf63cca9af45ba0.tar.bz2 |
Issue #20879: Delay the initialization of encoding and decoding tables for
base32, ascii85 and base85 codecs in the base64 module, and delay the
initialization of the unquote_to_bytes() table of the urllib.parse module, to
not waste memory if these modules are not used.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -21,6 +21,11 @@ Core and Builtins Library ------- +- Issue #20879: Delay the initialization of encoding and decoding tables for + base32, ascii85 and base85 codecs in the base64 module, and delay the + initialization of the unquote_to_bytes() table of the urllib.parse module, to + not waste memory if these modules are not used. + - Issue #19157: Include the broadcast address in the usuable hosts for IPv6 in ipaddress. |