]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-44219: Mention GH-28250 is a deadlock bugfix (GH-28261)
authorŁukasz Langa <lukasz@langa.pl>
Fri, 10 Sep 2021 15:51:43 +0000 (17:51 +0200)
committerGitHub <noreply@github.com>
Fri, 10 Sep 2021 15:51:43 +0000 (17:51 +0200)
Misc/NEWS.d/next/Core and Builtins/2021-09-09-10-32-33.bpo-44219.WiYyjz.rst

index 12915ffe3c07c4cc9d08a76bf5c9d6d80f8854ed..2abd81673663b87a8be39f9368c1ef2e6a9fd6bb 100644 (file)
@@ -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`.