summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-05-20 11:31:31 (GMT)
committerGitHub <noreply@github.com>2024-05-20 11:31:31 (GMT)
commit3a8ab99bf796f549ffde0f1b818b54a754796978 (patch)
treee74eb1c832054be0c54fc1432fcc774f8a2ce8df /Misc
parent3b908072578d44673b8f278117c9d4c3d42a3127 (diff)
downloadcpython-3a8ab99bf796f549ffde0f1b818b54a754796978.zip
cpython-3a8ab99bf796f549ffde0f1b818b54a754796978.tar.gz
cpython-3a8ab99bf796f549ffde0f1b818b54a754796978.tar.bz2
[3.13] gh-119121: Fix and test `async.staggered.staggered_race` (GH-119173) (#119206)
gh-119121: Fix and test `async.staggered.staggered_race` (GH-119173) (cherry picked from commit 16b46ebd2b0025aa461fdfc95fbf98a4f04b49e6) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2024-05-19-13-05-59.gh-issue-119121.P1gnh1.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-05-19-13-05-59.gh-issue-119121.P1gnh1.rst b/Misc/NEWS.d/next/Library/2024-05-19-13-05-59.gh-issue-119121.P1gnh1.rst
new file mode 100644
index 0000000..fd562ea
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-05-19-13-05-59.gh-issue-119121.P1gnh1.rst
@@ -0,0 +1,2 @@
+Fix a NameError happening in ``asyncio.staggered.staggered_race``. This
+function is now tested.