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.

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

imaplib.IMAP4.unsubscribe()

IMAP4.unsubscribe(mailbox) Unsubscribe from old mailbox.

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.

marshal.version

marshal.version Indicates the format that the module uses. Version 0 is the historical format, version 1 shares interned strings and version 2 uses a binary format for floating point numbers. Version 3 adds support for object instancing and recursion. The current version is 4.

shlex.shlex.whitespace

shlex.whitespace Characters that will be considered whitespace and skipped. Whitespace bounds tokens. By default, includes space, tab, linefeed and carriage-return.

array.array.tobytes()

array.tobytes() Convert the array to an array of machine values and return the bytes representation (the same sequence of bytes that would be written to a file by the tofile() method.) New in version 3.2: tostring() is renamed to tobytes() for clarity.

copy.error

exception copy.error Raised for module specific errors.