New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-34605, pty: Avoid master/slave terms #9100

Closed
wants to merge 3 commits into
base: master
from
Commits on Sep 7, 2018
  1. bpo-34605, pty: Avoid master/slave terms

    vstinner committed Sep 7, 2018
    * pty.spawn(): rename master_read parameter to parent_read
    * Rename pty.slave_open() to pty.child_open(), but keep an
      pty.slave_open alis to pty.child_open for backward compatibility
    * os.openpty(), os.forkpty(): rename master_fd/slave_fd
      to parent_fd/child_fd
    * Rename internal variables:
    
      * Rename master_fd/slave_fd to parent_fd/child_fd
      * Rename slave_name to child_name
  2. Replace more master/slave with parent/child

    vstinner committed Sep 7, 2018
  3. One more

    vstinner committed Sep 7, 2018