summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-07-21 16:47:28 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-07-21 16:47:28 (GMT)
commit7a7013e8304a5e54782330fe91e96e510d63e72e (patch)
tree96455204410767ee2046b65699f9738afaa0bcbe /Misc
parent2f3379f978516aaa3719d56e0ea9d91aca3c6fcc (diff)
downloadcpython-7a7013e8304a5e54782330fe91e96e510d63e72e.zip
cpython-7a7013e8304a5e54782330fe91e96e510d63e72e.tar.gz
cpython-7a7013e8304a5e54782330fe91e96e510d63e72e.tar.bz2
Merged revisions 83030 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83030 | antoine.pitrou | 2010-07-21 18:41:31 +0200 (mer., 21 juil. 2010) | 5 lines Issue #5395: check that array.fromfile() re-raises an IOError instead of replacing it with EOFError. (this is only an added test, but 2.x will get a fix too) ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a302c91..bd2fb98 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -355,6 +355,7 @@ Michiel de Hoon
Brian Hooper
Randall Hopper
Nadav Horesh
+Jan Hosang
Ken Howard
Brad Howes
Chih-Hao Huang
diff --git a/Misc/NEWS b/Misc/NEWS
index 45f81c3..979d35a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,10 @@ Core and Builtins
Library
-------
+- Issue #5395: array.fromfile() would raise a spurious EOFError when an
+ I/O error occurred. Now an IOError is raised instead. Patch by chuck
+ (Jan Hosang).
+
- Issue 1712522: urllib.quote supports Unicode String with encoding and errors
parameter. The encoding parameter defaults to utf-8 and errors to strict.
Patch by Matt Giuca.