summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2022-07-09 16:11:15 (GMT)
committerGitHub <noreply@github.com>2022-07-09 16:11:15 (GMT)
commit78307c7dc2352b6633138466debd4c10fae32970 (patch)
treeb46e6685c45595c97f3b99d42db7abcc7b0b2417 /Misc
parent0fc8ac0b0db6c03182c5181475c7b0b2ff7ec11f (diff)
downloadcpython-78307c7dc2352b6633138466debd4c10fae32970.zip
cpython-78307c7dc2352b6633138466debd4c10fae32970.tar.gz
cpython-78307c7dc2352b6633138466debd4c10fae32970.tar.bz2
gh-94637: Release GIL in SSLContext.set_default_verify_paths (GH-94658)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-07-07-15-46-55.gh-issue-94637.IYEiUM.rst3
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.