]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-125811: Remove DeprecationWarnings in test_peg_generator (#125812)
authorMikhail Efimov <efimov.mikhail@gmail.com>
Tue, 22 Oct 2024 08:41:30 +0000 (11:41 +0300)
committerGitHub <noreply@github.com>
Tue, 22 Oct 2024 08:41:30 +0000 (09:41 +0100)
Lib/test/test_peg_generator/test_pegen.py

index 86db767b99a2280b8003c1c3b1574a35ef42ed53..54c9dce2d0c90dc14f3b58b0e7a235d2fa25db94 100644 (file)
@@ -484,7 +484,7 @@ class TestPegen(unittest.TestCase):
 
     def test_python_expr(self) -> None:
         grammar = """
-        start: expr NEWLINE? $ { ast.Expression(expr, lineno=1, col_offset=0) }
+        start: expr NEWLINE? $ { ast.Expression(expr) }
         expr: ( expr '+' term { ast.BinOp(expr, ast.Add(), term, lineno=expr.lineno, col_offset=expr.col_offset, end_lineno=term.end_lineno, end_col_offset=term.end_col_offset) }
             | expr '-' term { ast.BinOp(expr, ast.Sub(), term, lineno=expr.lineno, col_offset=expr.col_offset, end_lineno=term.end_lineno, end_col_offset=term.end_col_offset) }
             | term { term }
@@ -893,7 +893,7 @@ class TestPegen(unittest.TestCase):
 
     def test_locations_in_alt_action_and_group(self) -> None:
         grammar = """
-        start: t=term NEWLINE? $ { ast.Expression(t, LOCATIONS) }
+        start: t=term NEWLINE? $ { ast.Expression(t) }
         term:
             | l=term '*' r=factor { ast.BinOp(l, ast.Mult(), r, LOCATIONS) }
             | l=term '/' r=factor { ast.BinOp(l, ast.Div(), r, LOCATIONS) }