diff options
| author | Quinn Pham <Quinn.Pham@ibm.com> | 2021-11-10 08:50:14 -0600 |
|---|---|---|
| committer | Quinn Pham <Quinn.Pham@ibm.com> | 2021-11-12 10:54:18 -0600 |
| commit | 52a3ed5b93ca9aba042d87e2bb697bf0dda2e43c (patch) | |
| tree | ca1b8d72d9df545bc30ad7ff3f556f2c16c2fa93 /lldb/third_party/Python/module | |
| parent | 79fbba9b7948d217ad34a81de205a9eaf53b05f9 (diff) | |
| download | llvm-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.py | 2 |
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: |
