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

@ -295,7 +295,7 @@ class AST_Tests(unittest.TestCase):
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'))