False The false value of the bool type. Assignments to False are illegal and raise a SyntaxError.
emit(record) Formats the record and sends it to the specified addressees.
operator.__itruediv__(a, b) a = itruediv(a, b) is equivalent to a /= b.
handle(record) This method does nothing.
Repr.repr(obj) The equivalent to the built-in repr() that uses the formatting imposed by the instance.
rcpttos Holds a list of strings containing the addresses identified in the “RCPT TO:” lines from the client.
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).
weakref.CallableProxyType The type object for proxies of callable objects.
next(iterator[, default]) Retrieve the next item from the iterator by calling its __next__() method. If default is given, it is returned if the iterator is exhausted, otherwise StopIteration is raised.
shutdown(wait=True) Signal the executor that it should free any resources that it is using when the currently pending futures are done executing. Calls to Executor.submit() and Executor.map() made after shutdown will raise RuntimeError. If wait is True then this method will not return until all the pending futures are done executing and the resources associated with the executor have been freed. If wait is False then this method will return immediately and the resources associated with the e
Page 213 of 663