PyDLL._handle The system handle used to access the library.
os.spawnlpe(mode, file, ..., env) os.spawnv(mode, path, args) os.spawnve(mode, path, args, env)
platform.system() Returns the system/OS name, e.g. 'Linux', 'Windows', or 'Java'. An
os.mknod(path, mode=0o600, device=0, *, dir_fd=None) Create a filesystem node (file, device special file or named pipe) named
os.fork() Fork a child process. Return 0 in the child and the child’s process id in the parent. If an error occurs
curses.use_env(flag) If used, this function should be called before initscr() or newterm are called. When flag
os.execle(path, arg0, arg1, ..., env) os.execlp(file, arg0, arg1, ...) os.execlpe(file, arg0, arg1, ..., env)
os.curdir The constant string used by the operating system to refer to the current directory. This is '.' for Windows
os.get_inheritable(fd) Get the “inheritable” flag of the specified file descriptor (a boolean).
curses.curs_set(visibility) Set the cursor state. visibility can be set to 0, 1, or 2, for invisible, normal, or very
Page 65 of 67