-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
Closed as not planned
Labels
stdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directorytopic-asynciotype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Description
Bug report
Bug description:
It seems create_unix_server
makes some calls to blocking functions.
cpython/Lib/asyncio/unix_events.py
Line 273 in 4d56c40
async def create_unix_server( |
In particular:
- os.fspath
- os.stat
- os.remove
- socket.bind (similar issue in
trio
: socket.bind() is a blocking call python-trio/trio#241)
CPython versions tested on:
3.11
Operating systems tested on:
No response
Metadata
Metadata
Assignees
Labels
stdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directorytopic-asynciotype-bugAn unexpected behavior, bug, or errorAn unexpected behavior, bug, or error
Projects
Status
Done