]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-23846: Fix ProactorEventLoop._write_to_self() (GH-11566)
authorVictor Stinner <vstinner@redhat.com>
Tue, 15 Jan 2019 12:58:38 +0000 (13:58 +0100)
committerGitHub <noreply@github.com>
Tue, 15 Jan 2019 12:58:38 +0000 (13:58 +0100)
commitc9f872b0bdce5888f1879fa74e098bf4a05430c5
treedf0e6acf0e9cd6827fffe8dc5fba0484c8a9c326
parent3607ef43c4a1a24d44f39ff54a77fc0af5bfa09a
bpo-23846: Fix ProactorEventLoop._write_to_self() (GH-11566)

asyncio.ProactorEventLoop now catchs and logs send errors when the
self-pipe is full: BaseProactorEventLoop._write_to_self() now catchs
and logs OSError exceptions, as done by
BaseSelectorEventLoop._write_to_self().
Lib/asyncio/proactor_events.py
Misc/NEWS.d/next/Library/2019-01-15-13-31-30.bpo-23846.LT_qL8.rst [new file with mode: 0644]