Fix an async funcdef issue, fixes 1092.

This commit is contained in:
Dave Halter
2018-04-24 00:41:18 +02:00
parent 4075c384e6
commit 8494164b22
2 changed files with 12 additions and 1 deletions

View File

@@ -73,3 +73,12 @@ async def wrapper():
asgen().__ane
#? []
asgen().mro
# Normal completion (#1092)
normal_var1 = 42
async def foo():
normal_var2 = False
#? ['normal_var1', 'normal_var2']
normal_var