diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-01-01 03:28:08 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2020-01-01 03:28:08 (GMT) |
commit | 6c004955aceb8a0cd8e14afbc608ebfdf7c8aa4a (patch) | |
tree | 51b36d7bffc65cdc050d9c3b8ba406419a701e24 | |
parent | 302b35f82bdaac817966638e2630b452f4123958 (diff) | |
download | cpython-6c004955aceb8a0cd8e14afbc608ebfdf7c8aa4a.zip cpython-6c004955aceb8a0cd8e14afbc608ebfdf7c8aa4a.tar.gz cpython-6c004955aceb8a0cd8e14afbc608ebfdf7c8aa4a.tar.bz2 |
bpo-39176: Improve error message for 'named assignment' (GH-17777) (GH-17778)
(cherry picked from commit 37143a8e3b2e9245d52f4ddebbdd1c6121c96884)
Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
-rw-r--r-- | Lib/test/test_named_expressions.py | 4 | ||||
-rw-r--r-- | Lib/test/test_syntax.py | 2 | ||||
-rw-r--r-- | Python/ast.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_named_expressions.py b/Lib/test/test_named_expressions.py index 01e26c8..3ae557f 100644 --- a/Lib/test/test_named_expressions.py +++ b/Lib/test/test_named_expressions.py @@ -32,7 +32,7 @@ class NamedExpressionInvalidTest(unittest.TestCase): def test_named_expression_invalid_06(self): code = """((a, b) := (1, 2))""" - with self.assertRaisesRegex(SyntaxError, "cannot use named assignment with tuple"): + with self.assertRaisesRegex(SyntaxError, "cannot use assignment expressions with tuple"): exec(code, {}, {}) def test_named_expression_invalid_07(self): @@ -90,7 +90,7 @@ class NamedExpressionInvalidTest(unittest.TestCase): code = """(lambda: x := 1)""" with self.assertRaisesRegex(SyntaxError, - "cannot use named assignment with lambda"): + "cannot use assignment expressions with lambda"): exec(code, {}, {}) def test_named_expression_invalid_16(self): diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py index 3829746..128c4da 100644 --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -45,7 +45,7 @@ SyntaxError: cannot assign to True >>> (True := 1) Traceback (most recent call last): -SyntaxError: cannot use named assignment with True +SyntaxError: cannot use assignment expressions with True >>> obj.__debug__ = 1 Traceback (most recent call last): diff --git a/Python/ast.c b/Python/ast.c index e70ab51..6cf71ce 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -1955,7 +1955,7 @@ ast_for_namedexpr(struct compiling *c, const node *n) if (target->kind != Name_kind) { const char *expr_name = get_expr_name(target); if (expr_name != NULL) { - ast_error(c, n, "cannot use named assignment with %s", expr_name); + ast_error(c, n, "cannot use assignment expressions with %s", expr_name); } return NULL; } |