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)
This commit is contained in:
Antoine Pitrou 2010-07-21 16:41:31 +00:00
parent de5b02430b
commit 8cb6dbf1b9
1 changed files with 11 additions and 0 deletions

View File

@ -326,6 +326,17 @@ class BaseTest(unittest.TestCase):
f.close()
support.unlink(support.TESTFN)
def test_fromfile_ioerror(self):
# Issue #5395: Check if fromfile raises a proper IOError
# instead of EOFError.
a = array.array(self.typecode)
f = open(support.TESTFN, 'wb')
try:
self.assertRaises(IOError, a.fromfile, f, len(self.example))
finally:
f.close()
support.unlink(support.TESTFN)
def test_filewrite(self):
a = array.array(self.typecode, 2*self.example)
f = open(support.TESTFN, 'wb')