object.

object.__getnewargs__() This method serve a similar purpose as __getnewargs_ex__() but for protocols 2 and newer

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

object.__reduce_ex__(protocol) Alternatively, a __reduce_ex__() method may be defined. The only difference is this

2016-10-07 17:38:19
dbm.ndbm.error

exception dbm.ndbm.error Raised on dbm.ndbm-specific errors, such as I/O errors.

2016-10-07 17:31:08
marshal.load()

marshal.load(file) Read one value from the open file and return it. If no valid value is read (e.g. because the data has a different

2016-10-07 17:36:57
sqlite3.version_info

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

2016-10-07 17:42:42
sqlite3.Connection.create_collation()

create_collation(name, callable) Creates a collation with the specified name and callable. The callable will

2016-10-07 17:42:35
sqlite3.Connection.set_authorizer()

set_authorizer(authorizer_callback) This routine registers a callback. The callback is invoked for each attempt to access a

2016-10-07 17:42:37
sqlite3.Connection.close()

close() This closes the database connection. Note that this does not automatically call commit(). If you just close

2016-10-07 17:42:34
sqlite3.Connection.cursor()

cursor([cursorClass]) The cursor method accepts a single optional parameter cursorClass. If supplied, this must be

2016-10-07 17:42:35
sqlite3.Connection.load_extension()

load_extension(path) This routine loads a SQLite extension from a shared library. You have to enable extension loading with

2016-10-07 17:42:36