[Zope3-checkins] CVS: Zope3/src/zodb - db.py:1.6
Jim Fulton
jim@zope.com
Tue, 4 Feb 2003 05:32:48 -0500
Update of /cvs-repository/Zope3/src/zodb
In directory cvs.zope.org:/tmp/cvs-serv16607
Modified Files:
db.py
Log Message:
Removed 'history' from the list of methods to be delegated to the
underlying storages, as this method has been removed from the storage
API.
=== Zope3/src/zodb/db.py 1.5 => 1.6 ===
--- Zope3/src/zodb/db.py:1.5 Tue Jan 28 13:17:30 2003
+++ Zope3/src/zodb/db.py Tue Feb 4 05:32:46 2003
@@ -88,7 +88,7 @@
storage.tpc_finish(t)
# Pass through methods:
- for m in ('history', 'supportsVersions', 'undoInfo', 'versionEmpty',
+ for m in ('supportsVersions', 'undoInfo', 'versionEmpty',
'versions', 'modifiedInVersion', 'versionEmpty'):
setattr(self, m, getattr(storage, m))