summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2019-09-30 05:59:11 (GMT)
committerGitHub <noreply@github.com>2019-09-30 05:59:11 (GMT)
commitfc4a044a3c54ce21e9ed150f7d769fb479d34c49 (patch)
treee1edc8803eeb30b48f333ff88cd478a4cc75a2c4 /Misc
parent6758e6e12a71ef5530146161881f88df1fa43382 (diff)
downloadcpython-fc4a044a3c54ce21e9ed150f7d769fb479d34c49.zip
cpython-fc4a044a3c54ce21e9ed150f7d769fb479d34c49.tar.gz
cpython-fc4a044a3c54ce21e9ed150f7d769fb479d34c49.tar.bz2
bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel (#7468)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-06-07-01-01-20.bpo-30773.C31rVE.rst2
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.