bpo-44219: Mention GH-28250 is a deadlock bugfix (GH-28261)

This commit is contained in:
Łukasz Langa 2021-09-10 17:51:43 +02:00 committed by GitHub
parent 4338aeeb9e
commit 296b710070
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View 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`.