[Zope3-checkins]
SVN: Zope3/branches/ZopeX3-3.0/src/zope/app/mail/delivery.py
override savepoint method in ZODB-3.4-aware subclass, just to be
Philipp von Weitershausen
philikon at philikon.de
Mon Jul 25 20:57:07 EDT 2005
Log message for revision 37420:
override savepoint method in ZODB-3.4-aware subclass, just to be
sure nobody can call ZODB-3.3-based code in Zope 2.8.
Changed:
U Zope3/branches/ZopeX3-3.0/src/zope/app/mail/delivery.py
-=-
Modified: Zope3/branches/ZopeX3-3.0/src/zope/app/mail/delivery.py
===================================================================
--- Zope3/branches/ZopeX3-3.0/src/zope/app/mail/delivery.py 2005-07-26 00:37:16 UTC (rev 37419)
+++ Zope3/branches/ZopeX3-3.0/src/zope/app/mail/delivery.py 2005-07-26 00:57:07 UTC (rev 37420)
@@ -76,6 +76,9 @@
# Use the default thread transaction manager.
self.transaction_manager = transaction.manager
+ def savepoint(self, transaction):
+ pass
+
# No subtransaction support.
def abort_sub(self, transaction):
pass
More information about the Zope3-Checkins
mailing list