summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-12-21 09:49:44 (GMT)
committerGitHub <noreply@github.com>2022-12-21 09:49:44 (GMT)
commit4994f2488f8a436ebda3510c779cbfe292bb21a0 (patch)
treed61b296d70a266f41cef8ace41d6fe2399482538 /Misc
parent79311cbfe718f17c89bab67d7f89da3931bfa2ac (diff)
downloadcpython-4994f2488f8a436ebda3510c779cbfe292bb21a0.zip
cpython-4994f2488f8a436ebda3510c779cbfe292bb21a0.tar.gz
cpython-4994f2488f8a436ebda3510c779cbfe292bb21a0.tar.bz2
GH-100363: Speed up `asyncio.get_running_loop` (#100364)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-12-20-11-07-30.gh-issue-100363.Wo_Beg.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-12-20-11-07-30.gh-issue-100363.Wo_Beg.rst b/Misc/NEWS.d/next/Library/2022-12-20-11-07-30.gh-issue-100363.Wo_Beg.rst
new file mode 100644
index 0000000..69bb529
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-12-20-11-07-30.gh-issue-100363.Wo_Beg.rst
@@ -0,0 +1 @@
+Speed up :func:`asyncio.get_running_loop` by removing redundant ``getpid`` checks. Patch by Kumar Aditya.