]> granicus.if.org Git - python/commit
Issue #20879: Delay the initialization of encoding and decoding tables for
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 17 Mar 2014 21:38:41 +0000 (22:38 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 17 Mar 2014 21:38:41 +0000 (22:38 +0100)
commitd6a91a7ab69fe449259d8719acf63cca9af45ba0
tree417a68e33635f534e1f3d4cd4333de832622af3e
parent2a6053468ea318acc2b382808f858d853cf3a89a
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.
Lib/base64.py
Lib/urllib/parse.py
Misc/NEWS