Merged revisions 77528 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77528 | antoine.pitrou | 2010-01-16 18:45:56 +0100 (sam., 16 janv. 2010) | 4 lines
Followup to #7703: a2b_hqx() didn't follow the new buffer API (neither in trunk
nor in py3k). Patch by Florent Xicluna as well as additional tests.
........
diff --git a/Misc/NEWS b/Misc/NEWS
index b220306..07b1503 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -213,6 +213,9 @@
Library
-------
+- Issue #7703: Add support for the new buffer API to `binascii.a2bhqx`.
+ Patch by Florent Xicluna, along with some additional tests.
+
- Issue #7701: Fix crash in binascii.b2a_uu() in debug mode when given a
1-byte argument. Patch by Victor Stinner.