Update to 2.7.3
[profile/ivi/python.git] / Lib / lib2to3 / tests / data / py2_test_grammar.py
index 17f9f4c..b5a4137 100644 (file)
@@ -316,7 +316,7 @@ class GrammarTests(unittest.TestCase):
         ### simple_stmt: small_stmt (';' small_stmt)* [';']
         x = 1; pass; del x
         def foo():
-            # verify statments that end with semi-colons
+            # verify statements that end with semi-colons
             x = 1; pass; del x;
         foo()