decimal.Context.max_mag()

max_mag(x, y) Compares the values numerically with their sign ignored.

ssl.PROTOCOL_SSLv2

ssl.PROTOCOL_SSLv2 Selects SSL version 2 as the channel encryption protocol. This protocol is not available if OpenSSL is compiled with the OPENSSL_NO_SSL2 flag. Warning SSL version 2 is insecure. Its use is highly discouraged.

select.epoll.closed

epoll.closed True if the epoll object is closed.

decimal.Context.number_class()

number_class(x) Returns an indication of the class of x.

xml.sax.handler.ErrorHandler.fatalError()

ErrorHandler.fatalError(exception) Called when the parser encounters an error it cannot recover from; parsing is expected to terminate when this method returns.

urllib.request.ProxyDigestAuthHandler

class urllib.request.ProxyDigestAuthHandler(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.

subprocess.TimeoutExpired.timeout

timeout Timeout in seconds.

symtable.SymbolTable.get_identifiers()

get_identifiers() Return a list of names of symbols in this table.

set

class set([iterable]) class frozenset([iterable]) Return a new set or frozenset object whose elements are taken from iterable. The elements of a set must be hashable. To represent sets of sets, the inner sets must be frozenset objects. If iterable is not specified, a new empty set is returned. Instances of set and frozenset provide the following operations: len(s) Return the number of elements in set s (cardinality of s). x in s Test x for membership in s. x not in s Test x for

doctest.register_optionflag()

doctest.register_optionflag(name) Create a new option flag with a given name, and return the new flag’s integer value. register_optionflag() can be used when subclassing OutputChecker or DocTestRunner to create new options that are supported by your subclasses. register_optionflag() should always be called using the following idiom: MY_FLAG = register_optionflag('MY_FLAG')