dict.values()

values() Return a new view of the dictionary’s values. See the documentation of view objects.

xml.sax.handler.ErrorHandler.warning()

ErrorHandler.warning(exception) Called when the parser presents minor warning information to the application. Parsing is expected to continue when this method returns, and document information will continue to be passed to the application. Raising an exception in this method will cause parsing to end.

concurrent.futures.Future.set_result()

set_result(result) Sets the result of the work associated with the Future to result. This method should only be used by Executor implementations and unit tests.

io.BufferedReader.read1()

read1(size) Read and return up to size bytes with only one call on the raw stream. If at least one byte is buffered, only buffered bytes are returned. Otherwise, one raw stream read call is made.

parser.STType

parser.STType The type of the objects returned by expr(), suite() and sequence2st().

datetime.timedelta.resolution

timedelta.resolution The smallest possible difference between non-equal timedelta objects, timedelta(microseconds=1).

bytearray.isdigit()

bytearray.isdigit() Return true if all bytes in the sequence are ASCII decimal digits and the sequence is not empty, false otherwise. ASCII decimal digits are those byte values in the sequence b'0123456789'. For example: >>> b'1234'.isdigit() True >>> b'1.23'.isdigit() False

imaplib.IMAP4.login_cram_md5()

IMAP4.login_cram_md5(user, password) Force use of CRAM-MD5 authentication when identifying the client to protect the password. Will only work if the server CAPABILITY response includes the phrase AUTH=CRAM-MD5.

weakref.proxy()

weakref.proxy(object[, callback]) Return a proxy to object which uses a weak reference. This supports use of the proxy in most contexts instead of requiring the explicit dereferencing used with weak reference objects. The returned object will have a type of either ProxyType or CallableProxyType, depending on whether object is callable. Proxy objects are not hashable regardless of the referent; this avoids a number of problems related to their fundamentally mutable nature, and prevent their u

nntplib.NNTP.description()

NNTP.description(group) Get a description for a single group group. If more than one group matches (if ‘group’ is a real wildmat string), return the first match. If no group matches, return an empty string. This elides the response code from the server. If the response code is needed, use descriptions().