diff options
Diffstat (limited to 'Lib/test/test_grammar.py')
-rw-r--r-- | Lib/test/test_grammar.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 2af73909f5..ca6b5d0c38 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -1051,10 +1051,7 @@ class GrammarTests(unittest.TestCase): async def test(): def sum(): - async = 1 - await = 41 - return async + await - + pass if 1: await someobj() |