pty.openpty()
Open a new pseudo-terminal pair, using os.openpty()
if possible, or emulation code for generic Unix systems. Return a pair of file descriptors (master, slave)
, for the master and the slave end, respectively.
pty.openpty()
Open a new pseudo-terminal pair, using os.openpty()
if possible, or emulation code for generic Unix systems. Return a pair of file descriptors (master, slave)
, for the master and the slave end, respectively.
Please login to continue.