[Zope3-checkins] CVS: Zope3/src/transaction - manager.py:1.7
Albertas Agejevas
alga@codeworks.lt
Thu, 13 Mar 2003 13:49:26 -0500
Update of /cvs-repository/Zope3/src/transaction
In directory cvs.zope.org:/tmp/cvs-serv1411/src/transaction
Modified Files:
manager.py
Log Message:
An unexpected raid by the Whitespace Police.
Other than fixes of nonconforming whitespace, just a couple of $Id$
docstrings has been added.
=== Zope3/src/transaction/manager.py 1.6 => 1.7 ===
--- Zope3/src/transaction/manager.py:1.6 Mon Mar 10 14:08:41 2003
+++ Zope3/src/transaction/manager.py Thu Mar 13 13:48:55 2003
@@ -18,7 +18,7 @@
# XXX the methods below use assertions, but perhaps they should
# check errors. on the other hand, the transaction instances
# do raise exceptions.
-
+
def commit(self, txn):
# commit calls _finishCommit() or abort()
assert txn._status is Status.ACTIVE
@@ -112,7 +112,7 @@
"transaction is active")
self._suspended.remove(txn)
self._current = txn
-
+
class Rollback(object):
__implements__ = IRollback