sqlite3.Connection.total_changes

total_changes Returns the total number of database rows that have been modified, inserted, or deleted since the database connection

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

object.__getnewargs_ex__() In protocols 4 and newer, classes that implements the __getnewargs_ex__() method can

2016-10-07 17:38:19
sqlite3.Cursor.executescript()

executescript(sql_script) This is a nonstandard convenience method for executing multiple SQL statements at once. It issues

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

interrupt() You can call this method from a different thread to abort any queries that might be executing on the connection

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

create_function(name, num_params, func) Creates a user-defined function that you can later use from within SQL statements under

2016-10-07 17:42:35
copyreg.pickle()

copyreg.pickle(type, function, constructor=None) Declares that function should be used as a “reduction” function for

2016-10-07 17:29:23
dbm.gnu.gdbm.sync()

gdbm.sync() When the database has been opened in fast mode, this method forces any unwritten data to be written to the disk

2016-10-07 17:31:07
marshal.loads()

marshal.loads(string) Convert the string to a value. If no valid value is found, raise

2016-10-07 17:36:58
marshal.dump()

marshal.dump(value, file[, version]) Write the value on the open file. The value must be a supported type. The file must be

2016-10-07 17:36:57
pickle.UnpicklingError

exception pickle.UnpicklingError Error raised when there is a problem unpickling an object, such as a data corruption or a security

2016-10-07 17:40:41