ZODB.Architecture.DB.history

Documentation
Return a sequence of HistoryEntry objects. The information provides a log of the changes made to the object. Data are reported in reverse chronological order.
Parameters
TypeNameDefaultDocumentation
OIDoid  
VersionStringversionNoneIf the version argument is supplied, then the history is with respect to the given version. For example, if an empty string is provided, then the history will exclude chages made in a version. If a non-empty string is provided, then teh history will exclude chages made in other versions, but will include changes made in the committed store.
PyIntsize1the maximum number of history entries
Callablefilterlambda e: 1A function that may be used to select history entries. The function is called with a HistoryEntry and returns a true value if the entry should be included in the output.
Returns
Historya sequence of HistoryEntry objects