Merge 3.2, fix typos.
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py
index 273185c..4fbe5b4 100644
--- a/Lib/test/test_ast.py
+++ b/Lib/test/test_ast.py
@@ -295,7 +295,7 @@
self.assertEqual(x.body, body)
def test_nodeclasses(self):
- # Zero arguments constructor explicitely allowed
+ # Zero arguments constructor explicitly allowed
x = ast.BinOp()
self.assertEqual(x._fields, ('left', 'op', 'right'))
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
index 25ca0b8..5e192d5 100644
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -3222,7 +3222,7 @@
# style defaults to %
self.assertIsInstance(formatter._style, logging.PercentStyle)
- # level is not explicitely set
+ # level is not explicitly set
self.assertEqual(logging.root.level, self.original_logging_level)
def test_filename(self):
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)