summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-01-16 17:55:52 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-01-16 17:55:52 (GMT)
commit747e8b3f589d2f951088cd9c27cdf6097440b878 (patch)
treeef9669b5dc0ab84f4022507a174f28cb1c70c69e /Misc
parent73fa727ed5b6229dbe54ff4653eec923a9dfa792 (diff)
downloadcpython-747e8b3f589d2f951088cd9c27cdf6097440b878.zip
cpython-747e8b3f589d2f951088cd9c27cdf6097440b878.tar.gz
cpython-747e8b3f589d2f951088cd9c27cdf6097440b878.tar.bz2
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. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b220306..07b1503 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -213,6 +213,9 @@ C-API
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.