Commit 30c891e0 authored by Stefan Behnel's avatar Stefan Behnel

Fix test compilation in MSVC (which rejects literal division by zero).

parent 3d9459c0
......@@ -894,7 +894,7 @@ class AsyncGenAsyncioTest(unittest.TestCase):
async def target():
await asyncio.sleep(0.01)
1 / 0
1 / ZERO
async def foo():
nonlocal DONE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment