summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-04-21 22:53:31 (GMT)
committerGitHub <noreply@github.com>2021-04-21 22:53:31 (GMT)
commit602eefef0bd0187049c2ab9071390f8573fc299a (patch)
tree70da7d512a286d59f66e8fc9ae0a978ef1f99cee /Misc
parent303ffb74a38dfed5c62ca6d8a2d53d80b696feab (diff)
downloadcpython-602eefef0bd0187049c2ab9071390f8573fc299a.zip
cpython-602eefef0bd0187049c2ab9071390f8573fc299a.tar.gz
cpython-602eefef0bd0187049c2ab9071390f8573fc299a.tar.bz2
bpo-43472: Ensure PyInterpreterState_New audit events are raised when called through _xxsubinterpreters module (GH-25506)
(cherry picked from commit 7b86e47617d81a4b14d929743425f448971e8c86) Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Security/2021-04-21-22-53-31.bpo-43472.gjLBTb.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2021-04-21-22-53-31.bpo-43472.gjLBTb.rst b/Misc/NEWS.d/next/Security/2021-04-21-22-53-31.bpo-43472.gjLBTb.rst
new file mode 100644
index 0000000..e38dc16
--- /dev/null
+++ b/Misc/NEWS.d/next/Security/2021-04-21-22-53-31.bpo-43472.gjLBTb.rst
@@ -0,0 +1,3 @@
+Ensures interpreter-level audit hooks receive the
+``cpython.PyInterpreterState_New`` event when called through the
+``_xxsubinterpreters`` module.