diff options
author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2019-07-14 12:15:32 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-07-14 12:15:32 (GMT) |
commit | 1c5e68e7145f0825f9b952389141edb9436eb43d (patch) | |
tree | bd9cffe7c14cd5ce3018681cd2795809d3062848 /Misc | |
parent | 0d4f4352efecf1b044c88e234e71774fe04b7d6c (diff) | |
download | cpython-1c5e68e7145f0825f9b952389141edb9436eb43d.zip cpython-1c5e68e7145f0825f9b952389141edb9436eb43d.tar.gz cpython-1c5e68e7145f0825f9b952389141edb9436eb43d.tar.bz2 |
bpo-34749: Improved performance of binascii.a2b_base64(). (GH-9444)
https://bugs.python.org/issue34749
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-09-21-13-23-29.bpo-34749.B0k819.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-21-13-23-29.bpo-34749.B0k819.rst b/Misc/NEWS.d/next/Library/2018-09-21-13-23-29.bpo-34749.B0k819.rst new file mode 100644 index 0000000..5a5e5b4 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-09-21-13-23-29.bpo-34749.B0k819.rst @@ -0,0 +1,2 @@ +:func:`binascii.a2b_base64` is now up to 2 times faster. Patch by Sergey +Fedoseev. |