crypt.mksalt()

crypt.mksalt(method=None) Return a randomly generated salt of the specified method. If no method is given, the strongest method available as returned by methods() is used. The return value is a string either of 2 characters in length for crypt.METHOD_CRYPT, or 19 characters starting with $digit$ and 16 random characters from the set [./a-zA-Z0-9], suitable for passing as the salt argument to crypt(). New in version 3.3.

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.

email.encoders.encode_noop()

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

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.

curses.window.erase()

window.erase() Clear the window.

decimal.Context.compare_total()

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

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.

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.

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.