summaryrefslogtreecommitdiff
path: root/Lib/pty.py
diff options
context:
space:
mode:
authorƁukasz Langa <lukasz@langa.pl>2021-08-13 12:57:07 +0200
committerGitHub <noreply@github.com>2021-08-13 12:57:07 +0200
commitdd8eb303b90d63e1f56684bedadca6674bb74a29 (patch)
treeae2f05d8cabf3850ac48815a82f79abaac883677 /Lib/pty.py
parent230403a6a19042b174374c3825904d2e857f38b0 (diff)
downloadcpython-git-dd8eb303b90d63e1f56684bedadca6674bb74a29.tar.gz
bpo-26228: [doc] Adapt PTY documentation updates from GH-4167 (GH-27754)
Co-authored-by: Cornelius Diekmann <c.diekmann@googlemail.com>
Diffstat (limited to 'Lib/pty.py')
-rw-r--r--Lib/pty.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pty.py b/Lib/pty.py
index 43e974fff1..8d8ce40df5 100644
--- a/Lib/pty.py
+++ b/Lib/pty.py
@@ -1,7 +1,7 @@
"""Pseudo terminal utilities."""
# Bugs: No signal handling. Doesn't set slave termios and window size.
-# Only tested on Linux.
+# Only tested on Linux, FreeBSD, and macOS.
# See: W. Richard Stevens. 1992. Advanced Programming in the
# UNIX Environment. Chapter 19.
# Author: Steen Lumholt -- with additions by Guido.