os.statvfs()

os.statvfs(path) Perform a statvfs() system call on the given path. The return value is an object whose attributes

2016-10-07 17:39:51
os.unsetenv()

os.unsetenv(key) Unset (delete) the environment variable named key. Such changes to the environment affect subprocesses

2016-10-07 17:40:09
time.struct_time

class time.struct_time The type of the time value sequence returned by gmtime(), localtime(), and

2016-10-07 17:44:43
curses.newpad()

curses.newpad(nlines, ncols) Create and return a pointer to a new pad data structure with the given number of lines and columns

2016-10-07 17:30:06
ctypes.c_uint

class ctypes.c_uint Represents the C unsigned int datatype. The constructor accepts an optional integer initializer;

2016-10-07 17:29:37
curses.setupterm()

curses.setupterm([termstr, fd]) Initialize the terminal. termstr is a string giving the terminal name; if omitted,

2016-10-07 17:30:13
os.spawnve()

os.spawnve(mode, path, args, env) os.spawnvp(mode, file, args) os.spawnvpe(mode, file, args, env)

2016-10-07 17:39:49
os.getloadavg()

os.getloadavg() Return the number of processes in the system run queue averaged over the last 1, 5, and 15 minutes or raises

2016-10-07 17:39:04
curses.window.setscrreg()

window.setscrreg(top, bottom) Set the scrolling region from line top to line bottom. All scrolling actions

2016-10-07 17:30:35
ctypes.CDLL

class ctypes.CDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False) Instances of this class represent

2016-10-07 17:29:33