summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-04 18:56:13 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-04 18:56:13 (GMT)
commit244651aa2f21db5006bbdc013d2586cbc10b313d (patch)
treed3676bec7e1efd55db9bfc10e02a9e9f5939de25 /Misc
parent375c01973881076b13d7d08afcd0b06b2a7690ce (diff)
downloadcpython-244651aa2f21db5006bbdc013d2586cbc10b313d.zip
cpython-244651aa2f21db5006bbdc013d2586cbc10b313d.tar.gz
cpython-244651aa2f21db5006bbdc013d2586cbc10b313d.tar.bz2
Merged revisions 72283-72284 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72283 | antoine.pitrou | 2009-05-04 20:32:32 +0200 (lun., 04 mai 2009) | 4 lines Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal sequences. Patch by Nick Barnes and Victor Stinner. ........ r72284 | antoine.pitrou | 2009-05-04 20:32:50 +0200 (lun., 04 mai 2009) | 3 lines Add Nick Barnes to ACKS. ........
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 7eab407..e26940a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -35,6 +35,7 @@ Luigi Ballabio
Jeff Balogh
Michael J. Barber
Chris Barker
+Nick Barnes
Quentin Barnes
Richard Barran
Cesar Eduardo Barros
diff --git a/Misc/NEWS b/Misc/NEWS
index befef21..378ed32 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1 beta 1?
Core and Builtins
-----------------
+- Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal
+ sequences. Patch by Nick Barnes and Victor Stinner.
+
- Issue #3672: Reject surrogates in utf-8 codec; add surrogates error handler.
- Issue #5883: In the io module, the BufferedIOBase and TextIOBase ABCs have