summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2022-11-22 11:33:32 (GMT)
committerGitHub <noreply@github.com>2022-11-22 11:33:32 (GMT)
commit1c5e8602922881604ee25fc9fd98f30630a7f105 (patch)
tree25b8c62fee463f180877073fcdd2383b54a79144 /Misc/NEWS.d
parent99e852c28fb7ba86aebbe6926b93eb2db8fd9a10 (diff)
downloadcpython-1c5e8602922881604ee25fc9fd98f30630a7f105.zip
cpython-1c5e8602922881604ee25fc9fd98f30630a7f105.tar.gz
cpython-1c5e8602922881604ee25fc9fd98f30630a7f105.tar.bz2
[3.10] GH-97001: Release GIL in termios extension (GH-99503) (#99680)
Without releasing the GIL calls to termios APIs might block the entire interpreter.. (cherry picked from commit 959ba45d75953caa911e16b4c2a277978fc4b9b0) Co-authored-by: Ronald Oussoren <ronaldoussoren@mac.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2022-11-15-10-55-24.gh-issue-97001.KeQuVF.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-11-15-10-55-24.gh-issue-97001.KeQuVF.rst b/Misc/NEWS.d/next/Library/2022-11-15-10-55-24.gh-issue-97001.KeQuVF.rst
new file mode 100644
index 0000000..014161c
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-11-15-10-55-24.gh-issue-97001.KeQuVF.rst
@@ -0,0 +1 @@
+Release the GIL when calling termios APIs to avoid blocking threads.