summaryrefslogtreecommitdiff
path: root/Lib/test/test_posix.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2011-11-11 19:39:25 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2011-11-11 19:39:25 +0100
commite41f0de84d286f0362e1c9e23a535aba827e109f (patch)
treeb5558b765d9f7b6fdb8903f8054727fed8736dc0 /Lib/test/test_posix.py
parentc178d9bcc4c3255cd2d4268b597e5e41cfeafdee (diff)
parent992d9e081fab2061185b80c6decb57249b4612fe (diff)
downloadcpython-git-e41f0de84d286f0362e1c9e23a535aba827e109f.tar.gz
Merge 3.2, fix typos.
Diffstat (limited to 'Lib/test/test_posix.py')
-rw-r--r--Lib/test/test_posix.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
index cdd1108b35..3c863a7c83 100644
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -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)