Fix few typos.

This commit is contained in:
Florent Xicluna 2011-11-11 19:35:42 +01:00
parent 490062b42c
commit 992d9e081f
4 changed files with 4 additions and 4 deletions

View file

@ -290,7 +290,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'))