commit | e41f0de84d286f0362e1c9e23a535aba827e109f | [log] [tgz] |
---|---|---|
author | Florent Xicluna <florent.xicluna@gmail.com> | Fri Nov 11 19:39:25 2011 +0100 |
committer | Florent Xicluna <florent.xicluna@gmail.com> | Fri Nov 11 19:39:25 2011 +0100 |
tree | b5558b765d9f7b6fdb8903f8054727fed8736dc0 | |
parent | c178d9bcc4c3255cd2d4268b597e5e41cfeafdee [diff] [blame] | |
parent | 992d9e081fab2061185b80c6decb57249b4612fe [diff] [blame] |
Merge 3.2, fix typos.
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index cdd1108..3c863a7 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py
@@ -190,7 +190,7 @@ os.write(fd, b'test') os.lseek(fd, 0, os.SEEK_SET) self.assertEqual(b'es', posix.pread(fd, 2, 1)) - # the first pread() shoudn't disturb the file offset + # the first pread() shouldn't disturb the file offset self.assertEqual(b'te', posix.read(fd, 2)) finally: os.close(fd)