Commit f2fff8bd authored by Jim Fulton's avatar Jim Fulton

Fixed doc string bug.

parent c57b37d5
...@@ -89,10 +89,12 @@ ...@@ -89,10 +89,12 @@
class TM: class TM:
"""Mix-in class that provides transaction management support """Mix-in class that provides transaction management support
A base class should call self._register() whenever it performs A sub class should call self._register() whenever it performs
any transaction-dependent operations (e.g. sql statements). any transaction-dependent operations (e.g. sql statements).
The base class may need to override tpc_finish and tpc_abort. The sub class will need to override _finish, to finallize work,
_abort, to roll-back work, and perhaps _begin, if any work is needed
at the start of a transaction.
""" """
_registered=None _registered=None
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment