summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2019-03-18 13:51:53 (GMT)
committerGitHub <noreply@github.com>2019-03-18 13:51:53 (GMT)
commit0c9258a6d299e0484538ef8d4b23f30515283db2 (patch)
tree0f38434d24356b79691c3fe31206b5cc0b7e701b /Lib
parent2ddc7f6d6223840c9971b36b30da4b3371d6e52b (diff)
downloadcpython-0c9258a6d299e0484538ef8d4b23f30515283db2.zip
cpython-0c9258a6d299e0484538ef8d4b23f30515283db2.tar.gz
cpython-0c9258a6d299e0484538ef8d4b23f30515283db2.tar.bz2
bpo-36332: Allow compile() to handle AST objects with assignment expressions (GH-12398)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_ast.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py
index a7ee0da..e39d1f2 100644
--- a/Lib/test/test_ast.py
+++ b/Lib/test/test_ast.py
@@ -135,6 +135,9 @@ exec_tests = [
"@deco1\n@deco2()\nclass C: pass",
# Decorator with generator argument
"@deco(a for a in b)\ndef f(): pass",
+ # Simple assignment expression
+ "(a := 1)",
+
]
# These are compiled through "single"
@@ -276,6 +279,13 @@ class AST_Tests(unittest.TestCase):
with self.subTest(action="compiling", input=i, kind=kind):
compile(ast_tree, "?", kind)
+ def test_ast_validation(self):
+ # compile() is the only function that calls PyAST_Validate
+ snippets_to_validate = exec_tests + single_tests + eval_tests
+ for snippet in snippets_to_validate:
+ tree = ast.parse(snippet)
+ compile(tree, '<string>', 'exec')
+
def test_slice(self):
slc = ast.parse("x[::]").body[0].value.slice
self.assertIsNone(slc.upper)
@@ -1677,6 +1687,7 @@ exec_results = [
('Module', [('AsyncFunctionDef', (3, 0), 'f', ('arguments', [], None, [], [], None, []), [('Pass', (3, 15))], [('Name', (1, 1), 'deco1', ('Load',)), ('Call', (2, 0), ('Name', (2, 1), 'deco2', ('Load',)), [], [])], None, None)], []),
('Module', [('ClassDef', (3, 0), 'C', [], [], [('Pass', (3, 9))], [('Name', (1, 1), 'deco1', ('Load',)), ('Call', (2, 0), ('Name', (2, 1), 'deco2', ('Load',)), [], [])])], []),
('Module', [('FunctionDef', (2, 0), 'f', ('arguments', [], None, [], [], None, []), [('Pass', (2, 9))], [('Call', (1, 1), ('Name', (1, 1), 'deco', ('Load',)), [('GeneratorExp', (1, 5), ('Name', (1, 6), 'a', ('Load',)), [('comprehension', ('Name', (1, 12), 'a', ('Store',)), ('Name', (1, 17), 'b', ('Load',)), [], 0)])], [])], None, None)], []),
+('Module', [('Expr', (1, 0), ('NamedExpr', (1, 1), ('Name', (1, 1), 'a', ('Store',)), ('Constant', (1, 6), 1, None)))], []),
]
single_results = [
('Interactive', [('Expr', (1, 0), ('BinOp', (1, 0), ('Constant', (1, 0), 1, None), ('Add',), ('Constant', (1, 2), 2, None)))]),