summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-01-14 16:27:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-01-14 16:27:09 (GMT)
commitfd3a60d5efb7ad1e2127d66d151c2cc4280b112b (patch)
tree4f4de83eb2606d10af2f7d16bbf8fcfc89b2419e /Misc
parent647ed91d5c7360bdb36d909e7057aad8ce19f662 (diff)
downloadcpython-fd3a60d5efb7ad1e2127d66d151c2cc4280b112b.zip
cpython-fd3a60d5efb7ad1e2127d66d151c2cc4280b112b.tar.gz
cpython-fd3a60d5efb7ad1e2127d66d151c2cc4280b112b.tar.bz2
Issue #7703: Add support for the new buffer API to functions of the
binascii module. Backported from py3k by Florent Xicluna, with some additional tests.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 312a2a9..665c924 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,10 @@ Core and Builtins
Library
-------
+- Issue #7703: Add support for the new buffer API to functions of the
+ binascii module. Backported from py3k by Florent Xicluna, with some
+ additional tests.
+
- Issue #2846: Add support for gzip.GzipFile reading zero-padded files.
Patch by Brian Curtin.