]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Added after_soft_rollback() Session event. This
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 1 Aug 2011 18:16:46 +0000 (14:16 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 1 Aug 2011 18:16:46 +0000 (14:16 -0400)
commit195a26e2fb5cd8c24381e467f94a14577c756843
tree31832c38027399a0be388ac571c4e0d681ea75bf
parentf9f8f4d35ec90082ab01964a668f710538ce647a
   - Added after_soft_rollback() Session event.  This
     event fires unconditionally whenever rollback()
     is called, regardless of if an actual DBAPI
     level rollback occurred.  This event
    is specifically designed to allow operations
     with the Session to proceed after a rollback
     when the Session.is_active is True.
     [ticket:2241]
- SessionTransaction is mentioned in public docs, many
more docstrings for events etc. otherwise
CHANGES
doc/build/orm/session.rst
lib/sqlalchemy/__init__.py
lib/sqlalchemy/orm/events.py
lib/sqlalchemy/orm/session.py
test/orm/test_events.py