summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2019-10-23 15:25:29 (GMT)
committerGitHub <noreply@github.com>2019-10-23 15:25:29 (GMT)
commit1b53a24fb4417c764dd5933bce505f5c94249ca6 (patch)
treebaaa5308734bdaed5f44da7118dab16645921f62 /Misc
parent2e3d873d3bd0ef4708c4fa06b6cd6972574cb9af (diff)
downloadcpython-1b53a24fb4417c764dd5933bce505f5c94249ca6.zip
cpython-1b53a24fb4417c764dd5933bce505f5c94249ca6.tar.gz
cpython-1b53a24fb4417c764dd5933bce505f5c94249ca6.tar.bz2
bpo-34679: ProactorEventLoop only uses set_wakeup_fd() in main thread (GH-16901)
bpo-34679, bpo-38563: asyncio.ProactorEventLoop.close() now only calls signal.set_wakeup_fd() in the main thread.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-10-23-16-25-12.bpo-34679.Bnw8o3.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-23-16-25-12.bpo-34679.Bnw8o3.rst b/Misc/NEWS.d/next/Library/2019-10-23-16-25-12.bpo-34679.Bnw8o3.rst
new file mode 100644
index 0000000..34334db
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-10-23-16-25-12.bpo-34679.Bnw8o3.rst
@@ -0,0 +1,2 @@
+asynci.ProactorEventLoop.close() now only calls signal.set_wakeup_fd() in the
+main thread.