weakref.CallableProxyType

weakref.CallableProxyType The type object for proxies of callable objects.

False

False The false value of the bool type. Assignments to False are illegal and raise a SyntaxError.

logging.handlers.SMTPHandler.emit()

emit(record) Formats the record and sends it to the specified addressees.

operator.__itruediv__()

operator.__itruediv__(a, b) a = itruediv(a, b) is equivalent to a /= b.

logging.NullHandler.handle()

handle(record) This method does nothing.

reprlib.Repr.repr()

Repr.repr(obj) The equivalent to the built-in repr() that uses the formatting imposed by the instance.

smtpd.SMTPChannel.rcpttos

rcpttos Holds a list of strings containing the addresses identified in the “RCPT TO:” lines from the client.

codecs.IncrementalDecoder.decode()

decode(object[, final]) Decodes object (taking the current state of the decoder into account) and returns the resulting decoded object. If this is the last call to decode() final must be true (the default is false). If final is true the decoder must decode the input completely and must flush all buffers. If this isn’t possible (e.g. because of incomplete byte sequences at the end of the input) it must initiate error handling just like in the stateless case (which might raise an exception).

operator.__and__()

operator.__and__(a, b) Return the bitwise and of a and b.

traceback.TracebackException.from_exception()

classmethod from_exception(exc, *, limit=None, lookup_lines=True, capture_locals=False) Capture an exception for later rendering. limit, lookup_lines and capture_locals are as for the StackSummary class. Note that when locals are captured, they are also shown in the traceback.