summaryrefslogtreecommitdiff
path: root/tests/simult.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simult.py')
-rw-r--r--tests/simult.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/simult.py b/tests/simult.py
deleted file mode 100644
index 49d3e4b..0000000
--- a/tests/simult.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import asyncio
-
-
-async def count():
- print("before")
- await asyncio.sleep(3)
- print("after")
-
-
-async def main():
- await asyncio.gather(count(), count(), count())
- i = 0
- while i < 3000000:
- i += 1
- print("done")
-
-asyncio.run(main())