Files
python-uncompyle6/test/simple_source/bug35/04_async_stmt.py
rocky 2126e4cf32 Fix bug in 3.5+ async stmt ..
and in verification status message
2018-01-19 03:15:08 -05:00

10 lines
227 B
Python

# From 3.5 _collections.abc.py
# Bug was not having \n after "await self.athrow()" stmt
async def aclose(self):
try:
await self.athrow()
except (GeneratorExit):
pass
else:
raise RuntimeError