summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-01 15:10:12 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-01 15:10:12 (GMT)
commitb0fa831d1e073624d28aa403496f122e2f35697a (patch)
tree4aab58985ebc949c482407f29f056e136d73bfb2 /Misc
parentf68c2a701bbca88da1299efe4aba84699827e791 (diff)
downloadcpython-b0fa831d1e073624d28aa403496f122e2f35697a.zip
cpython-b0fa831d1e073624d28aa403496f122e2f35697a.tar.gz
cpython-b0fa831d1e073624d28aa403496f122e2f35697a.tar.bz2
Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer API
properly. Patch by Stefan Behnel.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index d841e1a..a1a42a5 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -62,6 +62,7 @@ David Beazley
Robin Becker
Neal Becker
Bill Bedford
+Stefan Behnel
Reimer Behrends
Ben Bell
Thomas Bellman
diff --git a/Misc/NEWS b/Misc/NEWS
index 1055165..ceac14e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 2?
Core and Builtins
-----------------
+- Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer API
+ properly. Patch by Stefan Behnel.
+
- Issue #5553: The Py_LOCAL_INLINE macro now results in inlining on
most platforms. Previously, it online inlined when using Microsoft
Visual C.