Home | History | Annotate | Download | only in pexpect

Lines Matching refs:pty

9 the standard Python pty module. The Pexpect interface focuses on ease of use so
76 import pty
393 self.STDIN_FILENO = pty.STDIN_FILENO
394 self.STDOUT_FILENO = pty.STDOUT_FILENO
395 self.STDERR_FILENO = pty.STDERR_FILENO
445 # Solaris uses internal __fork_pty(). All others use pty.fork().
515 fork/exec type of stuff for a pty. This is called by __init__. If args
561 self.pid, self.child_fd = pty.fork()
563 raise ExceptionPexpect('pty.fork() failed: ' + str(e))
607 should be more portable than the pty.fork() function. Specifically,
611 resolve the issue with Python's pty.fork() not supporting Solaris,
646 more portable than the pty.fork() function. Specifically, this should
674 # Verify we can open child pty.
677 raise ExceptionPexpect("Could not open child pty, " + child_name)
690 """This returns the file descriptor of the pty for the child.
1056 ###C if ((m = write(pty, *buf, p - *buf)) < 0)