diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-03-22 15:15:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 15:15:24 (GMT) |
commit | 9d59381a5d20157930bae34e5f5a7bc5ef09fa89 (patch) | |
tree | 7d384ed48f1a068a5cf89ba093c0e1b0e5fac6a3 /Misc | |
parent | c3538355f49f9394140428a848f2acf08175ff1a (diff) | |
download | cpython-9d59381a5d20157930bae34e5f5a7bc5ef09fa89.zip cpython-9d59381a5d20157930bae34e5f5a7bc5ef09fa89.tar.gz cpython-9d59381a5d20157930bae34e5f5a7bc5ef09fa89.tar.bz2 |
[3.10] bpo-45997: Fix asyncio.Semaphore re-acquiring order (GH-31910) (#32047)
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
(cherry picked from commit 32e77154ddfc514a3144d5912bffdd957246fd6c)
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-03-15-18-32-12.bpo-45997.4n2aVU.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-03-15-18-32-12.bpo-45997.4n2aVU.rst b/Misc/NEWS.d/next/Library/2022-03-15-18-32-12.bpo-45997.4n2aVU.rst new file mode 100644 index 0000000..40d8504 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-03-15-18-32-12.bpo-45997.4n2aVU.rst @@ -0,0 +1 @@ +Fix :class:`asyncio.Semaphore` re-aquiring FIFO order. |