summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-11-27 05:54:48 (GMT)
committerGitHub <noreply@github.com>2022-11-27 05:54:48 (GMT)
commit191708c56cf45e0e1c98a0e7292ffa67b7e3b09c (patch)
treec9437bfc79d3da169c2907d36cf151e6e5a619cd /Misc
parent024ac542d738f56b36bdeb3517a10e93da5acab9 (diff)
downloadcpython-191708c56cf45e0e1c98a0e7292ffa67b7e3b09c.zip
cpython-191708c56cf45e0e1c98a0e7292ffa67b7e3b09c.tar.gz
cpython-191708c56cf45e0e1c98a0e7292ffa67b7e3b09c.tar.bz2
GH-66285: fix forking in asyncio (#99769)
Closes #66285
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-11-17-10-56-47.gh-issue-66285.KvjlaB.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-11-17-10-56-47.gh-issue-66285.KvjlaB.rst b/Misc/NEWS.d/next/Library/2022-11-17-10-56-47.gh-issue-66285.KvjlaB.rst
new file mode 100644
index 0000000..ebd8217
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-11-17-10-56-47.gh-issue-66285.KvjlaB.rst
@@ -0,0 +1 @@
+Fix :mod:`asyncio` to not share event loop and signal wakeupfd in forked processes. Patch by Kumar Aditya.