There was an error while loading. Please reload this page.
1 parent 7e8a3cf commit 5149a54Copy full SHA for 5149a54
uasyncio/uasyncio/__init__.py
@@ -17,8 +17,8 @@ def set_debug(val):
17
18
class PollEventLoop(EventLoop):
19
20
- def __init__(self, len=42):
21
- EventLoop.__init__(self, len)
+ def __init__(self, runq_len=16, waitq_len=16):
+ EventLoop.__init__(self, runq_len, waitq_len)
22
self.poller = select.poll()
23
self.objmap = {}
24
0 commit comments