From 52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c Mon Sep 17 00:00:00 2001 From: Quinn Pham Date: Wed, 10 Nov 2021 08:50:14 -0600 Subject: [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 --- .../third_party/Python/module/ptyprocess-0.6.0/ptyprocess/ptyprocess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/third_party/Python/module') 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: -- cgit v1.2.3