Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Functions | |
def | openpty |
def | master_open |
def | slave_open |
def | fork |
def | spawn |
Variables | |
list | __all__ = ["openpty","fork","spawn"] |
int | STDIN_FILENO = 0 |
int | STDOUT_FILENO = 1 |
int | STDERR_FILENO = 2 |
int | CHILD = 0 |
Pseudo terminal utilities.
def pty.openpty | ( | ) |
openpty() -> (master_fd, slave_fd) Open a pty master/slave pair, using os.openpty() if possible.
Definition at line 32 of file pty.py.
References slave_open().
def pty.slave_open | ( | tty_name) |
def pty.spawn | ( | argv, | |
master_read = _read , |
|||
stdin_read = _read |
|||
) |
Create a spawned process.
Definition at line 150 of file pty.py.
References fork(), and tty.setraw().