diff options
author | Antonio Gutierrez <chibby0ne@gmail.com> | 2019-10-09 02:19:48 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2019-10-09 02:19:48 (GMT) |
commit | 594e2edfb5e0d24e03469d035d8f39ff29a64d99 (patch) | |
tree | e40d0cc1fd6a74704b53922f7ec86637e8ebf245 /Misc | |
parent | e8bedbddadaa86be6bd86dc32dbdbd53933a4988 (diff) | |
download | cpython-594e2edfb5e0d24e03469d035d8f39ff29a64d99.zip cpython-594e2edfb5e0d24e03469d035d8f39ff29a64d99.tar.gz cpython-594e2edfb5e0d24e03469d035d8f39ff29a64d99.tar.bz2 |
closes bpo-36161: Use thread-safe ttyname_r instead of ttyname. (GH-14868)
Signed-off-by: Antonio Gutierrez <chibby0ne@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-07-20-01-17-43.bpo-36161.Fzf-f9.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-07-20-01-17-43.bpo-36161.Fzf-f9.rst b/Misc/NEWS.d/next/Library/2019-07-20-01-17-43.bpo-36161.Fzf-f9.rst new file mode 100644 index 0000000..b31496c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-07-20-01-17-43.bpo-36161.Fzf-f9.rst @@ -0,0 +1 @@ +In :mod:`posix`, use ``ttyname_r`` instead of ``ttyname`` for thread safety. |