diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-07-09 16:35:54 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-09 16:35:54 (GMT) |
commit | d4796c2231eef9355814572650f00c3c4662f197 (patch) | |
tree | 221df7b50748ef3561fdcadcdae787a75c24de91 /Misc | |
parent | da4912885f11f525a82a83f795ebffba06560e13 (diff) | |
download | cpython-d4796c2231eef9355814572650f00c3c4662f197.zip cpython-d4796c2231eef9355814572650f00c3c4662f197.tar.gz cpython-d4796c2231eef9355814572650f00c3c4662f197.tar.bz2 |
gh-94637: Release GIL in SSLContext.set_default_verify_paths (GH-94658)
(cherry picked from commit 78307c7dc2352b6633138466debd4c10fae32970)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-07-07-15-46-55.gh-issue-94637.IYEiUM.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-07-07-15-46-55.gh-issue-94637.IYEiUM.rst b/Misc/NEWS.d/next/Library/2022-07-07-15-46-55.gh-issue-94637.IYEiUM.rst new file mode 100644 index 0000000..20cbbcd --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-07-07-15-46-55.gh-issue-94637.IYEiUM.rst @@ -0,0 +1,3 @@ +:meth:`SSLContext.set_default_verify_paths` now releases the GIL around +``SSL_CTX_set_default_verify_paths`` call. The function call performs I/O +and CPU intensive work. |