summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests/ebuild/test_array_fromfile_eof.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/tests/ebuild/test_array_fromfile_eof.py')
-rw-r--r--pym/portage/tests/ebuild/test_array_fromfile_eof.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/tests/ebuild/test_array_fromfile_eof.py b/pym/portage/tests/ebuild/test_array_fromfile_eof.py
index 3f2a6c7c5..c32a15cb0 100644
--- a/pym/portage/tests/ebuild/test_array_fromfile_eof.py
+++ b/pym/portage/tests/ebuild/test_array_fromfile_eof.py
@@ -28,7 +28,8 @@ class ArrayFromfileEofTestCase(TestCase):
a = array.array('B')
try:
a.fromfile(f, len(input_bytes) + 1)
- except EOFError:
+ # EOFError was raised in Python <2.6.6 and <2.7.1.
+ except (EOFError, IOError):
# python-3.0 lost data here
eof = True