asynchat.async_chat.ac_out_buffer_size

ac_out_buffer_size The asynchronous output buffer size (default 4096).

json.loads()

json.loads(s, encoding=None, cls=None, object_hook=None, parse_float=None, parse_int=None, parse_constant=None, object_pairs_hook=None, **kw) Deserialize s (a str instance containing a JSON document) to a Python object using this conversion table. The other arguments have the same meaning as in load(), except encoding which is ignored and deprecated. If the data being deserialized is not a valid JSON document, a JSONDecodeError will be raised.

collections.deque.reverse()

reverse() Reverse the elements of the deque in-place and then return None. New in version 3.2.

abc.ABCMeta

class abc.ABCMeta Metaclass for defining Abstract Base Classes (ABCs). Use this metaclass to create an ABC. An ABC can be subclassed directly, and then acts as a mix-in class. You can also register unrelated concrete classes (even built-in classes) and unrelated ABCs as “virtual subclasses” – these and their descendants will be considered subclasses of the registering ABC by the built-in issubclass() function, but the registering ABC won’t show up in their MRO (Method Resolution Order) nor w

memoryview.hex()

hex() Return a string object containing two hexadecimal digits for each byte in the buffer. >>> m = memoryview(b"abc") >>> m.hex() '616263' New in version 3.5.

dbm.ndbm.ndbm.close()

ndbm.close() Close the ndbm database.

ssl.SSLSocket.server_hostname

SSLSocket.server_hostname Hostname of the server: str type, or None for server-side socket or if the hostname was not specified in the constructor. New in version 3.2.

importlib.abc.FileLoader.path

path Path to the file of the module.

code.InteractiveInterpreter.write()

InteractiveInterpreter.write(data) Write a string to the standard error stream (sys.stderr). Derived classes should override this to provide the appropriate output handling as needed.

doctest.DocTest.globs

globs The namespace (aka globals) that the examples should be run in. This is a dictionary mapping names to values. Any changes to the namespace made by the examples (such as binding new variables) will be reflected in globs after the test is run.