diff options
author | Sam Bull <aa6bs0@sambull.org> | 2021-11-29 08:12:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 08:12:57 (GMT) |
commit | 934a82623793e9d52b85f74d5395d65927a52205 (patch) | |
tree | c95f149838e5db9effbb361e8eda2d82c1b8fc1a /Misc/NEWS.d | |
parent | f87ea0350286837e9e96de03f8bfa215176c2928 (diff) | |
download | cpython-934a82623793e9d52b85f74d5395d65927a52205.zip cpython-934a82623793e9d52b85f74d5395d65927a52205.tar.gz cpython-934a82623793e9d52b85f74d5395d65927a52205.tar.bz2 |
bpo-37658: Actually return result in race condition (GH-29202)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-11-28-15-30-34.bpo-37658.8Hno7d.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-11-28-15-30-34.bpo-37658.8Hno7d.rst b/Misc/NEWS.d/next/Library/2021-11-28-15-30-34.bpo-37658.8Hno7d.rst new file mode 100644 index 0000000..97d1e96 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-11-28-15-30-34.bpo-37658.8Hno7d.rst @@ -0,0 +1,3 @@ +Fix issue when on certain conditions ``asyncio.wait_for()`` may allow a +coroutine to complete successfully, but fail to return the result, +potentially causing memory leaks or other issues. |