Skip to content

Commit 58ec0c1

Browse files
committed
Optimiziation
1 parent 03017a8 commit 58ec0c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_ast/test_ast.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ def test_compare_basics(self):
548548
)
549549

550550
def test_compare_modified_ast(self):
551-
# The ast API is a bit underspecified. The objects are mutable,
551+
# The ast API is a bit under-specified. The objects are mutable,
552552
# and even _fields and _attributes are mutable. The compare() does
553553
# some simple things to accommodate mutability.
554554
a = ast.parse("m * x + b", mode="eval")
@@ -3545,7 +3545,7 @@ def test_show_empty_flag(self):
35453545
self.check_output(source, expect, '--show-empty')
35463546

35473547

3548-
class ASTOptimiziationTests(unittest.TestCase):
3548+
class ASTOptimizationTests(unittest.TestCase):
35493549
def wrap_expr(self, expr):
35503550
return ast.Module(body=[ast.Expr(value=expr)])
35513551

0 commit comments

Comments
 (0)