diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2022-11-22 10:14:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-22 10:14:23 (GMT) |
commit | 959ba45d75953caa911e16b4c2a277978fc4b9b0 (patch) | |
tree | ff31e9022498a9ee7176466abb27b75cd041c59b /Misc | |
parent | 4d82f628c44490d6fbc3f6998d2473d1304d891f (diff) | |
download | cpython-959ba45d75953caa911e16b4c2a277978fc4b9b0.zip cpython-959ba45d75953caa911e16b4c2a277978fc4b9b0.tar.gz cpython-959ba45d75953caa911e16b4c2a277978fc4b9b0.tar.bz2 |
GH-97001: Release GIL in termios extension (#99503)
Without releasing the GIL calls to termios APIs might block the entire interpreter.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-11-15-10-55-24.gh-issue-97001.KeQuVF.rst | 1 |
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. |