commit | 9436361e4cdd7d3dc5f42674b54995c4915afb59 | [log] [tgz] |
---|---|---|
author | Jesus Cea <jcea@jcea.es> | Fri Jun 22 18:32:07 2012 +0200 |
committer | Jesus Cea <jcea@jcea.es> | Fri Jun 22 18:32:07 2012 +0200 |
tree | 18ecfd666aa3101811f6e79a5ca883293917a88b | |
parent | ff493c9c465ba9502629bf5001f690068be97f33 [diff] [blame] |
Closes #10142: Support for SEEK_HOLE/SEEK_DATA
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py index 1951a06..54ba179 100644 --- a/Lib/test/test_io.py +++ b/Lib/test/test_io.py
@@ -706,7 +706,7 @@ bufio = self.tp(rawio) # Invalid whence self.assertRaises(ValueError, bufio.seek, 0, -1) - self.assertRaises(ValueError, bufio.seek, 0, 3) + self.assertRaises(ValueError, bufio.seek, 0, 9) def test_override_destructor(self): tp = self.tp