pickle.Unpickler.persistent_load()

persistent_load(pid) Raise an UnpicklingError by default. If defined, pe

2016-10-07 17:40:41
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.Cursor.fetchone()

fetchone() Fetches the next row of a query result set, returning a single sequence, or

2016-10-07 17:42:40
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
dbm.gnu.gdbm.firstkey()

gdbm.firstkey() It’s possible to loop over every key in the database using this method and the nextkey() method

2016-10-07 17:31:07
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.ndbm.library

dbm.ndbm.library Name of the ndbm implementation library used.

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

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

2016-10-07 17:38:19
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
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