aboutsummaryrefslogtreecommitdiff
path: root/lldb/third_party/Python/module
diff options
context:
space:
mode:
authorQuinn Pham <Quinn.Pham@ibm.com>2021-11-10 08:50:14 -0600
committerQuinn Pham <Quinn.Pham@ibm.com>2021-11-12 10:54:18 -0600
commit52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c (patch)
treeca1b8d72d9df545bc30ad7ff3f556f2c16c2fa93 /lldb/third_party/Python/module
parent79fbba9b7948d217ad34a81de205a9eaf53b05f9 (diff)
downloadllvm-52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c.tar.gz
llvm-52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c.tar.bz2
llvm-52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c.zip
[lldb][NFC] Inclusive language: replace master/slave names for ptys
[NFC] This patch replaces master and slave with primary and secondary respectively when referring to pseudoterminals/file descriptors. Reviewed By: clayborg, teemperor Differential Revision: https://reviews.llvm.org/D113687
Diffstat (limited to 'lldb/third_party/Python/module')
-rw-r--r--lldb/third_party/Python/module/ptyprocess-0.6.0/ptyprocess/ptyprocess.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/third_party/Python/module/ptyprocess-0.6.0/ptyprocess/ptyprocess.py b/lldb/third_party/Python/module/ptyprocess-0.6.0/ptyprocess/ptyprocess.py
index 29b4e43b569f..a58741e8335e 100644
--- a/lldb/third_party/Python/module/ptyprocess-0.6.0/ptyprocess/ptyprocess.py
+++ b/lldb/third_party/Python/module/ptyprocess-0.6.0/ptyprocess/ptyprocess.py
@@ -229,7 +229,7 @@ class PtyProcess(object):
pid, fd = _fork_pty.fork_pty()
# Some platforms must call setwinsize() and setecho() from the
- # child process, and others from the master process. We do both,
+ # child process, and others from the primary process. We do both,
# allowing IOError for either.
if pid == CHILD: