summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorƁukasz Langa <lukasz@langa.pl>2021-09-10 15:51:43 (GMT)
committerGitHub <noreply@github.com>2021-09-10 15:51:43 (GMT)
commit296b7100705ef52aece3378b0ae42c33a58526e1 (patch)
tree3cdd70a8b5edbfae128afb9d6a6b4953adf4778b /Misc
parent4338aeeb9e07607f17bbada8ebfd97e7cc7a203c (diff)
downloadcpython-296b7100705ef52aece3378b0ae42c33a58526e1.zip
cpython-296b7100705ef52aece3378b0ae42c33a58526e1.tar.gz
cpython-296b7100705ef52aece3378b0ae42c33a58526e1.tar.bz2
bpo-44219: Mention GH-28250 is a deadlock bugfix (GH-28261)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-09-09-10-32-33.bpo-44219.WiYyjz.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-09-09-10-32-33.bpo-44219.WiYyjz.rst b/Misc/NEWS.d/next/Core and Builtins/2021-09-09-10-32-33.bpo-44219.WiYyjz.rst
index 12915ff..2abd816 100644
--- a/Misc/NEWS.d/next/Core and Builtins/2021-09-09-10-32-33.bpo-44219.WiYyjz.rst
+++ b/Misc/NEWS.d/next/Core and Builtins/2021-09-09-10-32-33.bpo-44219.WiYyjz.rst
@@ -1,4 +1,5 @@
Release the GIL while performing ``isatty`` system calls on arbitrary file
descriptors. In particular, this affects :func:`os.isatty`,
:func:`os.device_encoding` and :class:`io.TextIOWrapper`. By extension,
-:func:`io.open` in text mode is also affected.
+:func:`io.open` in text mode is also affected. This change solves
+a deadlock in :func:`os.isatty`. Patch by Vincent Michel in :issue:`44219`.