time.clock_gettime()

time.clock_gettime(clk_id) Return the time of the specified clock clk_id. Availability: Unix. New in version 3.3.

email.encoders.encode_7or8bit()

email.encoders.encode_7or8bit(msg) This doesn’t actually modify the message’s payload, but it does set the Content-Transfer-Encoding header to either 7bit or 8bit as appropriate, based on the payload data.

sqlite3.Connection

class sqlite3.Connection A SQLite database connection has the following attributes and methods: isolation_level Get or set the current isolation level. None for autocommit mode or one of “DEFERRED”, “IMMEDIATE” or “EXCLUSIVE”. See section Controlling Transactions for a more detailed explanation. in_transaction True if a transaction is active (there are uncommitted changes), False otherwise. Read-only attribute. New in version 3.2. cursor([cursorClass]) The cursor method acce

ctypes.c_float

class ctypes.c_float Represents the C float datatype. The constructor accepts an optional float initializer.

curses.echo()

curses.echo() Enter echo mode. In echo mode, each character input is echoed to the screen as it is entered.

sysconfig.get_config_var()

sysconfig.get_config_var(name) Return the value of a single variable name. Equivalent to get_config_vars().get(name). If name is not found, return None.

datetime.date.__str__()

date.__str__() For a date d, str(d) is equivalent to d.isoformat().

html.parser.HTMLParser.handle_decl()

HTMLParser.handle_decl(decl) This method is called to handle an HTML doctype declaration (e.g. <!DOCTYPE html>). The decl parameter will be the entire contents of the declaration inside the <!...> markup (e.g. 'DOCTYPE html').

xdrlib.Packer.pack_double()

Packer.pack_double(value) Packs the double-precision floating point number value.

multiprocessing.current_process()

multiprocessing.current_process() Return the Process object corresponding to the current process. An analogue of threading.current_thread().