email.message.Message.get_unixfrom()

get_unixfrom() Return the message’s envelope header. Defaults to None if the envelope header was never set.

string.digits

string.digits The string '0123456789'.

curses.window.vline()

window.vline(ch, n) window.vline(y, x, ch, n) Display a vertical line starting at (y, x) with length n consisting of the character ch.

multiprocessing.Pipe()

multiprocessing.Pipe([duplex]) Returns a pair (conn1, conn2) of Connection objects representing the ends of a pipe. If duplex is True (the default) then the pipe is bidirectional. If duplex is False then the pipe is unidirectional: conn1 can only be used for receiving messages and conn2 can only be used for sending messages.

UnicodeError.encoding

encoding The name of the encoding that raised the error.

dis.Bytecode.info()

info() Return a formatted multi-line string with detailed information about the code object, like code_info().

queue.Queue.empty()

Queue.empty() Return True if the queue is empty, False otherwise. If empty() returns True it doesn’t guarantee that a subsequent call to put() will not block. Similarly, if empty() returns False it doesn’t guarantee that a subsequent call to get() will not block.

socketserver.BaseServer.RequestHandlerClass

RequestHandlerClass The user-provided request handler class; an instance of this class is created for each request.

bdb.Bdb.get_all_breaks()

get_all_breaks() Return all breakpoints that are set.

sys.getdefaultencoding()

sys.getdefaultencoding() Return the name of the current default string encoding used by the Unicode implementation.