Commit 7fddccf6 authored by Chris McDonough's avatar Chris McDonough

repr fix for transaction>=1.2.0

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