[Zope3-checkins] SVN: Zope3/trunk/src/ Stitch in ZODB 3.4b3.
Connection has a public
Tim Peters
tim.one at comcast.net
Fri May 27 15:16:34 EDT 2005
Log message for revision 30539:
Stitch in ZODB 3.4b3. Connection has a public
.transaction_manager attribute now.
Changed:
_U Zope3/trunk/src/
U Zope3/trunk/src/zope/app/mail/delivery.py
-=-
Property changes on: Zope3/trunk/src
___________________________________________________________________
Name: svn:externals
- ZConfig svn://svn.zope.org/repos/main/ZConfig/tags/ZConfig-2.3
BTrees svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b1/src/BTrees
persistent svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b1/src/persistent
ThreadedAsync svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b1/src/ThreadedAsync
transaction svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b1/src/transaction
ZEO svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b1/src/ZEO
ZODB svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b1/src/ZODB
+ ZConfig svn://svn.zope.org/repos/main/ZConfig/tags/ZConfig-2.3
BTrees svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b3/src/BTrees
persistent svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b3/src/persistent
ThreadedAsync svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b3/src/ThreadedAsync
transaction svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b3/src/transaction
ZEO svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b3/src/ZEO
ZODB svn://svn.zope.org/repos/main/ZODB/tags/3.4.0b3/src/ZODB
Modified: Zope3/trunk/src/zope/app/mail/delivery.py
===================================================================
--- Zope3/trunk/src/zope/app/mail/delivery.py 2005-05-27 18:15:52 UTC (rev 30538)
+++ Zope3/trunk/src/zope/app/mail/delivery.py 2005-05-27 19:16:04 UTC (rev 30539)
@@ -44,6 +44,8 @@
self.callable = callable
self.args = args
self.onAbort = onAbort
+ # Use the default thread transaction manager.
+ self.transaction_manager = transaction.manager
def commit(self, transaction):
self.callable(*self.args)
More information about the Zope3-Checkins
mailing list