cmd.Cmd.preloop()

Cmd.preloop() Hook method executed once when cmdloop() is called. This method is a stub in Cmd; it exists to be overridden by subclasses.

queue.Queue.put_nowait()

Queue.put_nowait(item) Equivalent to put(item, False).

grp.getgrall()

grp.getgrall() Return a list of all available group entries, in arbitrary order.

gettext.dngettext()

gettext.dngettext(domain, singular, plural, n) Like ngettext(), but look the message up in the specified domain.

asyncio.AbstractEventLoop.create_connection()

coroutine AbstractEventLoop.create_connection(protocol_factory, host=None, port=None, *, ssl=None, family=0, proto=0, flags=0, sock=None, local_addr=None, server_hostname=None) Create a streaming transport connection to a given Internet host and port: socket family AF_INET or AF_INET6 depending on host (or family if specified), socket type SOCK_STREAM. protocol_factory must be a callable returning a protocol instance. This method is a coroutine which will try to establish the connection in t

struct.unpack()

struct.unpack(fmt, buffer) Unpack from the buffer buffer (presumably packed by pack(fmt, ...)) according to the format string fmt. The result is a tuple even if it contains exactly one item. The buffer’s size in bytes must match the size required by the format, as reflected by calcsize().

wsgiref.handlers.BaseHandler._write()

_write(data) Buffer the bytes data for transmission to the client. It’s okay if this method actually transmits the data; BaseHandler just separates write and flush operations for greater efficiency when the underlying system actually has such a distinction.

imaplib.IMAP4.socket()

IMAP4.socket() Returns socket instance used to connect to server.

pathlib.PosixPath

class pathlib.PosixPath(*pathsegments) A subclass of Path and PurePosixPath, this class represents concrete non-Windows filesystem paths: >>> PosixPath('/etc') PosixPath('/etc') pathsegments is specified similarly to PurePath.

operator.__add__()

operator.__add__(a, b) Return a + b, for a and b numbers.