marshal.version
  • References/Python/Python/Data Persistence

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

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

keys() This method returns a list of column names. Immediately after a query, it is the first member of each tuple in Cursor

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

copyreg.constructor(object) Declares object to be a valid constructor. If object is not callable (and hence

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

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

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

set_progress_handler(handler, n) This routine registers a callback. The callback is invoked for every n instructions

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

class sqlite3.Row A Row instance serves as a highly optimized row_factory for Connection

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

fast Deprecated. Enable fast mode if set to a true value. The fast mode disables the usage of memo, therefore speeding the pickling

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

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

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

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

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

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

2025-01-10 15:47:30