diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-01 15:10:12 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-09-01 15:10:12 (GMT) |
commit | b0fa831d1e073624d28aa403496f122e2f35697a (patch) | |
tree | 4aab58985ebc949c482407f29f056e136d73bfb2 /Misc | |
parent | f68c2a701bbca88da1299efe4aba84699827e791 (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -62,6 +62,7 @@ David Beazley Robin Becker Neal Becker Bill Bedford +Stefan Behnel Reimer Behrends Ben Bell Thomas Bellman @@ -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. |