Commit fe0753a3 authored by Jim Fulton's avatar Jim Fulton

doom and savepoint

parent 9cc735ff
......@@ -106,9 +106,9 @@ transaction managers provide an optional explicit mode. Transaction
managers have an ``explicit`` constructor keyword argument that, if
True puts the transaction manager in explicit mode. In explicit mode:
- It is an error to call ``get()``, ``commit()`` or ``abort()``
without a preceding ``begin()`` call. Doing so will raise a
``NoTransaction`` exception.
- It is an error to call ``get()``, ``commit()``, ``abort()``,
``doom()``, or ``savepoint()`` without a preceding ``begin()`` call.
Doing so will raise a ``NoTransaction`` exception.
- It is an error to call ``begin()`` after a previous ``begin()``
without an intervening ``commit()`` or ``abort()`` call. Doing so
......
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