diff options
author | Joongi Kim <joongi@lablup.com> | 2021-10-10 16:01:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 16:01:41 (GMT) |
commit | 1a7892414e654aa5c99efa31db767baba7f4a424 (patch) | |
tree | 50de7bd25b262b2fe44f1028bd8da17dcb9d03c6 /Misc | |
parent | 62a667784ba7b84611ebd50fa8a1a464cde32235 (diff) | |
download | cpython-1a7892414e654aa5c99efa31db767baba7f4a424.zip cpython-1a7892414e654aa5c99efa31db767baba7f4a424.tar.gz cpython-1a7892414e654aa5c99efa31db767baba7f4a424.tar.bz2 |
bpo-45416: Fix use of asyncio.Condition() with explicit Lock objects (GH-28850)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2021-10-10-09-42-34.bpo-45416.n35O0_.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-10-10-09-42-34.bpo-45416.n35O0_.rst b/Misc/NEWS.d/next/Library/2021-10-10-09-42-34.bpo-45416.n35O0_.rst new file mode 100644 index 0000000..cf335d1 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2021-10-10-09-42-34.bpo-45416.n35O0_.rst @@ -0,0 +1,2 @@ +Fix use of :class:`asyncio.Condition` with explicit :class:`asyncio.Lock` objects, which was a regression due to removal of explicit loop arguments.
+Patch by Joongi Kim.
\ No newline at end of file |