Merge 3.2, fix typos.

This commit is contained in:
Florent Xicluna 2011-11-11 19:39:25 +01:00
commit e41f0de84d
8 changed files with 8 additions and 8 deletions

View file

@ -190,7 +190,7 @@ class PosixTester(unittest.TestCase):
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)