asyncio.AbstractEventLoop.close()

AbstractEventLoop.close() Close the event loop. The loop must not be running. Pending callbacks will be lost. This clears the queues and shuts down the executor, but does not wait for the executor to finish. This is idempotent and irreversible. No other methods should be called after this one.

email.headerregistry.ParameterizedMIMEHeader.params

params A dictionary mapping parameter names to parameter values.

codecs.getdecoder()

codecs.getdecoder(encoding) Look up the codec for the given encoding and return its decoder function. Raises a LookupError in case the encoding cannot be found.

asyncore.dispatcher.handle_connect()

handle_connect() Called when the active opener’s socket actually makes a connection. Might send a “welcome” banner, or initiate a protocol negotiation with the remote endpoint, for example.

dis.hasfree

dis.hasfree Sequence of bytecodes that access a free variable (note that ‘free’ in this context refers to names in the current scope that are referenced by inner scopes or names in outer scopes that are referenced from this scope. It does not include references to global or builtin scopes).

msilib.Control.condition()

condition(action, condition) Make an entry into the ControlCondition table for this control.

ipaddress.IPv6Network.overlaps()

overlaps(other)

pty.fork()

pty.fork() Fork. Connect the child’s controlling terminal to a pseudo-terminal. Return value is (pid, fd). Note that the child gets pid 0, and the fd is invalid. The parent’s return value is the pid of the child, and fd is a file descriptor connected to the child’s controlling terminal (and also to the child’s standard input and output).

email.message.Message.get_content_subtype()

get_content_subtype() Return the message’s sub-content type. This is the subtype part of the string returned by get_content_type().

inspect.currentframe()

inspect.currentframe() Return the frame object for the caller’s stack frame. CPython implementation detail: This function relies on Python stack frame support in the interpreter, which isn’t guaranteed to exist in all implementations of Python. If running in an implementation without Python stack frame support this function returns None.