From 06e9b57dfc8492984290914b5428b27508cef982 Mon Sep 17 00:00:00 2001 From: bd Date: Mon, 9 Jun 2025 01:47:13 -0400 Subject: Rewrite for further similarities to Scalene < v1.0 --- tests/simult.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/simult.py') diff --git a/tests/simult.py b/tests/simult.py index a840db5..6228596 100644 --- a/tests/simult.py +++ b/tests/simult.py @@ -1,10 +1,12 @@ import asyncio + async def count(): print("before") await asyncio.sleep(1) print("after") + async def main(): await asyncio.gather(count(), count(), count()) print("done") -- cgit v1.2.3