pty
index
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/pty.py
Module Docs

Pseudo terminal utilities.

 
Modules
       
os
tty

 
Functions
       
fork()
fork() -> (pid, master_fd)
Fork and make the child a session leader with a controlling terminal.
openpty()
openpty() -> (master_fd, slave_fd)
Open a pty master/slave pair, using os.openpty() if possible.
spawn(argv, master_read=<function _read>, stdin_read=<function _read>)
Create a spawned process.

 
Data
        __all__ = ['openpty', 'fork', 'spawn']