curses.resizeterm()

curses.resizeterm(nlines, ncols) Resize the standard and current windows to the specified dimensions, and adjusts other bookkeeping data used by the curses library that record the window dimensions (in particular the SIGWINCH handler).

ctypes.WinDLL

class ctypes.WinDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False) Windows only: Instances of this class represent loaded shared libraries, functions in these libraries use the stdcall calling convention, and are assumed to return int by default. On Windows CE only the standard calling convention is used, for convenience the WinDLL and OleDLL use the standard calling convention on this platform.

curses.pair_number()

curses.pair_number(attr) Return the number of the color-pair set by the attribute value attr. color_pair() is the counterpart to this function.

urllib.request.ProxyBasicAuthHandler

class urllib.request.ProxyBasicAuthHandler(password_mgr=None) Handle authentication with the proxy. password_mgr, if given, should be something that is compatible with HTTPPasswordMgr; refer to section HTTPPasswordMgr Objects for information on the interface that must be supported.

decimal.Context.compare_total()

compare_total(x, y) Compares two operands using their abstract representation.

curses.window.erase()

window.erase() Clear the window.

zipimport.zipimporter.is_package()

is_package(fullname) Return True if the module specified by fullname is a package. Raise ZipImportError if the module couldn’t be found.

email.encoders.encode_noop()

email.encoders.encode_noop(msg) This does nothing; it doesn’t even set the Content-Transfer-Encoding header.

struct.Struct.size

size The calculated size of the struct (and hence of the bytes object produced by the pack() method) corresponding to format.

bdb.Breakpoint.deleteMe()

deleteMe() Delete the breakpoint from the list associated to a file/line. If it is the last breakpoint in that position, it also deletes the entry for the file/line.