diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2021-04-13 16:51:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-13 16:51:21 (GMT) |
commit | 30ed93bfec5dfa7ee05982e2df8fd810f3f49305 (patch) | |
tree | 2ba7d8eaba2304ec562e5bb877f7a6e0975954fa /Lib/test/test_genexps.py | |
parent | fd79af7ae2574aaaa829e40ed780e17ef1f9be84 (diff) | |
download | cpython-30ed93bfec5dfa7ee05982e2df8fd810f3f49305.zip cpython-30ed93bfec5dfa7ee05982e2df8fd810f3f49305.tar.gz cpython-30ed93bfec5dfa7ee05982e2df8fd810f3f49305.tar.bz2 |
bpo-43797: Handle correctly invalid assignments inside function calls and generators (GH-25390)
Diffstat (limited to 'Lib/test/test_genexps.py')
-rw-r--r-- | Lib/test/test_genexps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_genexps.py b/Lib/test/test_genexps.py index 70fe2bb..5c1a209 100644 --- a/Lib/test/test_genexps.py +++ b/Lib/test/test_genexps.py @@ -103,7 +103,7 @@ Verify that parenthesis are required when used as a keyword argument value >>> dict(a = i for i in range(10)) Traceback (most recent call last): ... - SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='? + SyntaxError: invalid syntax Verify that parenthesis are required when used as a keyword argument value |