summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2008-08-17 13:10:46 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2008-08-17 13:10:46 (GMT)
commit41a81eb6cb05bb9b8799a145509a27e81d357601 (patch)
tree782e1affacb30056cb0279c740741dfb69c7513b /Misc
parentc53427087e6fcf6680c83f7ede85ce02510c89a0 (diff)
downloadcpython-41a81eb6cb05bb9b8799a145509a27e81d357601.zip
cpython-41a81eb6cb05bb9b8799a145509a27e81d357601.tar.gz
cpython-41a81eb6cb05bb9b8799a145509a27e81d357601.tar.bz2
Backport r65661, r65760: Issue #3575: Incremental decoder's decode
function now takes bytearray by using 's*' instead of 't#'.
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 cd056a9..4a92186 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,9 @@ Core and Builtins
Library
-------
+- Issue #3575: Incremental decoder's decode function now takes bytearray
+ by using 's*' instead of 't#'.
+
- Issue #2222: Fixed reference leak when occured os.rename()
fails unicode conversion on 2nd parameter. (windows only)