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().

ipaddress.IPv4Network.compressed

compressed

ctypes.pointer()

ctypes.pointer(obj) This function creates a new pointer instance, pointing to obj. The returned object is of the type POINTER(type(obj)). Note: If you just want to pass a pointer to an object to a foreign function call, you should use byref(obj) which is much faster.