os.execvpe()

os.execvpe(file, args, env) These functions all execute a new program, replacing the current process; they do not return. On

2016-10-07 17:38:54
curses.ascii.isupper()

curses.ascii.isupper(c) Checks for an ASCII uppercase letter.

2016-10-07 17:29:56
os.ttyname()

os.ttyname(fd) Return a string which specifies the terminal device associated with file descriptor fd. If fd

2016-10-07 17:40:08
ctypes.Structure.

_pack_ An optional small integer that allows overriding the alignment of structure fields in the instance. _pack_

2016-10-07 17:29:46
curses.window.syncdown()

window.syncdown() Touch each location in the window that has been touched in any of its ancestor windows. This routine is called

2016-10-07 17:30:36
ctypes.

errcheck Assign a Python function or another callable to this attribute. The callable will be called with three or more arguments:

2016-10-07 17:29:51
io.IOBase.close()

close() Flush and close this stream. This method has no effect if the file is already closed. Once the file is closed, any operation

2016-10-07 17:35:18
curses.window.bkgdset()

window.bkgdset(ch[, attr]) Set the window’s background. A window’s background consists of a character and any combination of

2016-10-07 17:30:21
curses.has_key()

curses.has_key(ch) Take a key value ch, and return True if the current terminal type recognizes a key

2016-10-07 17:30:02
io.IOBase.writable()

writable() Return True if the stream supports writing. If False, write() and truncate()

2016-10-07 17:35:20