shelve.BsdDbShelf

class shelve.BsdDbShelf(dict, protocol=None, writeback=False, keyencoding='utf-8') A subclass of Shelf which exposes

2016-10-07 17:41:49
pickle.Unpickler

class pickle.Unpickler(file, *, fix_imports=True, encoding="ASCII", errors="strict") This takes a binary file for reading a

2016-10-07 17:40:41
pickle.Pickler.persistent_id()

persistent_id(obj) Do nothing by default. This exists so a subclass can override it. If

2016-10-07 17:40:40
sqlite3.register_adapter()

sqlite3.register_adapter(type, callable) Registers a callable to convert the custom Python type type into one of SQLite’s

2016-10-07 17:42:41
pickle.Pickler.dispatch_table

dispatch_table A pickler object’s dispatch table is a registry of reduction functions of the kind which can be declared

2016-10-07 17:40:40
sqlite3.Cursor.execute()

execute(sql[, parameters]) Executes an SQL statement. The SQL statement may be parameterized (i. e. placeholders instead of

2016-10-07 17:42:39
pickle.Pickler

class pickle.Pickler(file, protocol=None, *, fix_imports=True) This takes a binary file for writing a pickle data stream.

2016-10-07 17:40:40
dbm.open()

dbm.open(file, flag='r', mode=0o666) Open the database file file and return a corresponding object.

2016-10-07 17:31:08
object.

object.__getstate__() Classes can further influence how their instances are pickled; if the class defines the method

2016-10-07 17:38:19
sqlite3.Cursor.lastrowid

lastrowid This read-only attribute provides the rowid of the last modified row. It is only set if you issued an INSERT

2016-10-07 17:42:40