logging.Handler.__init__()

Handler.__init__(level=NOTSET) Initializes the Handler instance by setting its level, setting the list of filters to the empty list and creating a lock (using createLock()) for serializing access to an I/O mechanism.

os.path.isabs()

os.path.isabs(path) Return True if path is an absolute pathname. On Unix, that means it begins with a slash, on Windows that it begins with a (back)slash after chopping off a potential drive letter.

binascii.Incomplete

exception binascii.Incomplete Exception raised on incomplete data. These are usually not programming errors, but may be handled by reading a little more data and trying again.

sqlite3.Cursor.fetchall()

fetchall() Fetches all (remaining) rows of a query result, returning a list. Note that the cursor’s arraysize attribute can affect the performance of this operation. An empty list is returned when no rows are available.

decimal.Context.is_zero()

is_zero(x) Returns True if x is a zero; otherwise returns False.

email.charset.Charset.output_codec

output_codec The name of the Python codec used to convert Unicode to the output_charset. If no conversion codec is necessary, this attribute will have the same value as the input_codec.

bdb.Breakpoint.disable()

disable() Mark the breakpoint as disabled.

operator.__iconcat__()

operator.__iconcat__(a, b) a = iconcat(a, b) is equivalent to a += b for a and b sequences.

mailbox.BabylMessage.get_labels()

get_labels() Return a list of labels on the message.

datetime.datetime.isoweekday()

datetime.isoweekday() Return the day of the week as an integer, where Monday is 1 and Sunday is 7. The same as self.date().isoweekday(). See also weekday(), isocalendar().