diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2023-05-08 22:56:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-08 22:56:01 (GMT) |
commit | 4541d1a0dba3ef0c386991cf54c4c3c411a364c0 (patch) | |
tree | c79210120e5a9ea0835a6e63fa5a63f9ff5078ad /Misc | |
parent | 5c9ee498c6f4b75e0e020f17b6860309c3b7e11e (diff) | |
download | cpython-4541d1a0dba3ef0c386991cf54c4c3c411a364c0.zip cpython-4541d1a0dba3ef0c386991cf54c4c3c411a364c0.tar.gz cpython-4541d1a0dba3ef0c386991cf54c4c3c411a364c0.tar.bz2 |
gh-104310: Add importlib.util.allowing_all_extensions() (gh-104311)
(I'll be adding docs for this separately.)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-05-08-15-50-59.gh-issue-104310.fXVSPY.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-05-08-15-50-59.gh-issue-104310.fXVSPY.rst b/Misc/NEWS.d/next/Library/2023-05-08-15-50-59.gh-issue-104310.fXVSPY.rst new file mode 100644 index 0000000..3743d56 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-05-08-15-50-59.gh-issue-104310.fXVSPY.rst @@ -0,0 +1,3 @@ +Users may now use ``importlib.util.allowing_all_extensions()`` (a context +manager) to temporarily disable the strict compatibility checks for +importing extension modules in subinterpreters. |