summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2019-07-14 12:15:32 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-07-14 12:15:32 (GMT)
commit1c5e68e7145f0825f9b952389141edb9436eb43d (patch)
treebd9cffe7c14cd5ce3018681cd2795809d3062848 /Misc
parent0d4f4352efecf1b044c88e234e71774fe04b7d6c (diff)
downloadcpython-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.rst2
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.