pickle.UnpicklingError
  • References/Python/Python/Data Persistence

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

2025-01-10 15:47:30
sqlite3.Connection.close()
  • References/Python/Python/Data Persistence

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

2025-01-10 15:47:30
sqlite3.Connection.create_collation()
  • References/Python/Python/Data Persistence

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

2025-01-10 15:47:30
shelve.Shelf.sync()
  • References/Python/Python/Data Persistence

Shelf.sync() Write back all entries in the cache if the shelf was opened with writeback set to

2025-01-10 15:47:30
sqlite3.register_adapter()
  • References/Python/Python/Data Persistence

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

2025-01-10 15:47:30
pickle.PickleError
  • References/Python/Python/Data Persistence

exception pickle.PickleError Common base class for the other pickling exceptions. It inherits

2025-01-10 15:47:30
pickle.dumps()
  • References/Python/Python/Data Persistence

pickle.dumps(obj, protocol=None, *, fix_imports=True) Return the pickled representation of the object as a

2025-01-10 15:47:30
sqlite3.complete_statement()
  • References/Python/Python/Data Persistence

sqlite3.complete_statement(sql) Returns

2025-01-10 15:47:30
dbm.gnu.error
  • References/Python/Python/Data Persistence

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

2025-01-10 15:47:30
pickle.Pickler.persistent_id()
  • References/Python/Python/Data Persistence

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

2025-01-10 15:47:30