Skip to content

Commit b4b19f1

Browse files
committed
uasyncio: Schedule simple I/O completion callbacks directly in event loop.
Simple == without args. This is expected action for them, and saves creation of lambda just for that. Actually, probably all callbacks should be handled this way.
1 parent 7cd53c8 commit b4b19f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uasyncio/uasyncio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def wait(self, delay):
5858
if isinstance(cb, tuple):
5959
cb[0](*cb[1])
6060
else:
61-
cb()
61+
self.call_soon(cb)
6262

6363

6464
class StreamReader:

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy