diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-07-22 11:48:57 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-07-22 11:48:57 (GMT) |
commit | b7666a30933efbbb2e400e6916bba2311340fcd1 (patch) | |
tree | cee7b9199e082b014a9cbcbe749aa86591cad829 /Lib/test/badsyntax_async2.py | |
parent | 8fb307cd650511ba019c4493275cb6684ad308bc (diff) | |
download | cpython-b7666a30933efbbb2e400e6916bba2311340fcd1.zip cpython-b7666a30933efbbb2e400e6916bba2311340fcd1.tar.gz cpython-b7666a30933efbbb2e400e6916bba2311340fcd1.tar.bz2 |
Issue #24619: More tests; fix nits in compiler.c
Diffstat (limited to 'Lib/test/badsyntax_async2.py')
-rw-r--r-- | Lib/test/badsyntax_async2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/badsyntax_async2.py b/Lib/test/badsyntax_async2.py index 6f6f4f5..fb85e29 100644 --- a/Lib/test/badsyntax_async2.py +++ b/Lib/test/badsyntax_async2.py @@ -1,2 +1,2 @@ -async def foo(a:await something()): +async def foo(a=await something()): pass |