[Zope-Checkins] CVS: ZODB3/ZODB - Transaction.py:1.41
Jeremy Hylton
jeremy@zope.com
Mon, 2 Dec 2002 17:16:58 -0500
Update of /cvs-repository/ZODB3/ZODB
In directory cvs.zope.org:/tmp/cvs-serv15353
Modified Files:
Transaction.py
Log Message:
Change quotes.
=== ZODB3/ZODB/Transaction.py 1.40 => 1.41 ===
--- ZODB3/ZODB/Transaction.py:1.40 Mon Nov 18 18:17:40 2002
+++ ZODB3/ZODB/Transaction.py Mon Dec 2 17:16:58 2002
@@ -96,12 +96,11 @@
if self._objects: self.abort(freeme=0)
def abort(self, subtransaction=0, freeme=1):
- '''Abort the transaction.
+ """Abort the transaction.
This is called from the application. This means that we haven\'t
entered two-phase commit yet, so no tpc_ messages are sent.
- '''
-
+ """
if subtransaction and (self._non_st_objects is not None):
raise POSException.TransactionError, (
"""Attempted to abort a sub-transaction, but a participating