We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03017a8 commit 58ec0c1Copy full SHA for 58ec0c1
1 file changed
Lib/test/test_ast/test_ast.py
@@ -548,7 +548,7 @@ def test_compare_basics(self):
548
)
549
550
def test_compare_modified_ast(self):
551
- # The ast API is a bit underspecified. The objects are mutable,
+ # The ast API is a bit under-specified. The objects are mutable,
552
# and even _fields and _attributes are mutable. The compare() does
553
# some simple things to accommodate mutability.
554
a = ast.parse("m * x + b", mode="eval")
@@ -3545,7 +3545,7 @@ def test_show_empty_flag(self):
3545
self.check_output(source, expect, '--show-empty')
3546
3547
3548
-class ASTOptimiziationTests(unittest.TestCase):
+class ASTOptimizationTests(unittest.TestCase):
3549
def wrap_expr(self, expr):
3550
return ast.Module(body=[ast.Expr(value=expr)])
3551
0 commit comments