summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntonio Gutierrez <chibby0ne@gmail.com>2019-10-09 02:19:48 (GMT)
committerBenjamin Peterson <benjamin@python.org>2019-10-09 02:19:48 (GMT)
commit594e2edfb5e0d24e03469d035d8f39ff29a64d99 (patch)
treee40d0cc1fd6a74704b53922f7ec86637e8ebf245 /Misc
parente8bedbddadaa86be6bd86dc32dbdbd53933a4988 (diff)
downloadcpython-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.rst1
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.