diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-30 06:19:02 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2019-09-30 06:19:02 (GMT) |
commit | 2f87a7dc5a1ad7f37787f0adee242c931643f878 (patch) | |
tree | 97318638a1b2dc84070c8595b9328398a0d5d363 /Misc | |
parent | 1c19d656a79a00f58361ceb61c0a6d1faf90c686 (diff) | |
download | cpython-2f87a7dc5a1ad7f37787f0adee242c931643f878.zip cpython-2f87a7dc5a1ad7f37787f0adee242c931643f878.tar.gz cpython-2f87a7dc5a1ad7f37787f0adee242c931643f878.tar.bz2 |
bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel (GH-7468) (#16486)
(cherry picked from commit fc4a044a3c54ce21e9ed150f7d769fb479d34c49)
Co-authored-by: Yury Selivanov <yury@magic.io>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-06-07-01-01-20.bpo-30773.C31rVE.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-06-07-01-01-20.bpo-30773.C31rVE.rst b/Misc/NEWS.d/next/Core and Builtins/2018-06-07-01-01-20.bpo-30773.C31rVE.rst new file mode 100644 index 0000000..501ee52 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2018-06-07-01-01-20.bpo-30773.C31rVE.rst @@ -0,0 +1,2 @@ +Prohibit parallel running of aclose() / asend() / athrow(). Fix ag_running +to reflect the actual running status of the AG. |