summaryrefslogtreecommitdiff
path: root/tests/simult.py
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-06-15 23:10:09 -0400
committerbd <bdunahu@operationnull.com>2025-06-15 23:10:09 -0400
commit8844dceadcdeebf67d07656bf45d3ddada3e2b5b (patch)
tree0d4e5204c8091cbf2ecb81437e5e1ab0f72511a1 /tests/simult.py
parentc21e4366fb64130d168150f0ed94293e699eb525 (diff)
Functional monkey-patched EpollSelector, good results
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())