pack_into(buffer, offset, v1, v2, ...) Identical to the pack_into() function, using the compiled format.
class.__bases__ The tuple of base classes of a class object.
header_store_parse(name, value) The name and value are returned unmodified.
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.
is_zero(x) Returns True if x is a zero; otherwise returns False.
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.
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.
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.
disable() Mark the breakpoint as disabled.
operator.__iconcat__(a, b) a = iconcat(a, b) is equivalent to a += b for a and b sequences.
Page 621 of 663