diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-01-15 12:58:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-15 12:58:38 (GMT) |
commit | c9f872b0bdce5888f1879fa74e098bf4a05430c5 (patch) | |
tree | df0e6acf0e9cd6827fffe8dc5fba0484c8a9c326 /Misc | |
parent | 3607ef43c4a1a24d44f39ff54a77fc0af5bfa09a (diff) | |
download | cpython-c9f872b0bdce5888f1879fa74e098bf4a05430c5.zip cpython-c9f872b0bdce5888f1879fa74e098bf4a05430c5.tar.gz cpython-c9f872b0bdce5888f1879fa74e098bf4a05430c5.tar.bz2 |
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().
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-01-15-13-31-30.bpo-23846.LT_qL8.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-01-15-13-31-30.bpo-23846.LT_qL8.rst b/Misc/NEWS.d/next/Library/2019-01-15-13-31-30.bpo-23846.LT_qL8.rst new file mode 100644 index 0000000..788f092 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-01-15-13-31-30.bpo-23846.LT_qL8.rst @@ -0,0 +1,2 @@ +:class:`asyncio.ProactorEventLoop` now catchs and logs send errors when the +self-pipe is full. |