Commit 0ab8d984 authored by Chris McDonough's avatar Chris McDonough

repr fix for transaction>=1.2.0

parent 5423f110
......@@ -182,15 +182,15 @@ However, using a savepoint invalidates any savepoints that come after it:
>>> root['bob-balance']
100.0
>>> savepoint2.rollback()
>>> savepoint2.rollback() # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
...
InvalidSavepointRollbackError
InvalidSavepointRollbackError: invalidated by a later savepoint
>>> savepoint1.rollback()
>>> savepoint1.rollback() # doctest: +IGNORE_EXCEPTION_DETAIL
Traceback (most recent call last):
...
InvalidSavepointRollbackError
InvalidSavepointRollbackError: invalidated by a later savepoint
>>> transaction.abort()
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