marshal.version

marshal.version Indicates the format that the module uses. Version 0 is the historical format, version 1 shares interned strings

2016-10-07 17:36:58
sqlite3.register_converter()

sqlite3.register_converter(typename, callable) Registers a callable to convert a bytestring from the database into a custom

2016-10-07 17:42:41
pickle.loads()

pickle.loads(bytes_object, *, fix_imports=True, encoding="ASCII", errors="strict") Read a pickled object hierarchy from a

2016-10-07 17:40:39
sqlite3.Connection.enable_load_extension()

enable_load_extension(enabled) This routine allows/disallows the SQLite engine to load SQLite extensions from shared libraries

2016-10-07 17:42:35
sqlite3.version

sqlite3.version The version number of this module, as a string. This is not the version of the SQLite library.

2016-10-07 17:42:42
object.

object.__reduce__() The interface is currently defined as follows. The __reduce__() method takes no argument and

2016-10-07 17:38:20
object.

object.__setstate__(state) Upon unpickling, if the class defines __setstate__(), it is called with the unpickled

2016-10-07 17:38:20
pickle.Pickler.dump()

dump(obj) Write a pickled representation of obj to the open file object given in the constructor.

2016-10-07 17:40:40
pickle.load()

pickle.load(file, *, fix_imports=True, encoding="ASCII", errors="strict") Read a pickled object representation from the open

2016-10-07 17:40:39
dbm.whichdb()

dbm.whichdb(filename) This function attempts to guess which of the several simple database modules available — dbm.gnu

2016-10-07 17:31:08