diff options
author | Diana Clarke <diana.joan.clarke@gmail.com> | 2011-02-28 13:17:46 -0500 |
---|---|---|
committer | Diana Clarke <diana.joan.clarke@gmail.com> | 2011-02-28 13:17:46 -0500 |
commit | 13242f766eb5063a789937e2d56089207426dba0 (patch) | |
tree | 4a599c8e3ce5a887581bbe6b1fb178a696d38827 /lib/sqlalchemy/orm/deprecated_interfaces.py | |
parent | 62c545108d97ebe98731204b1de90e9abe2025b7 (diff) | |
download | sqlalchemy-13242f766eb5063a789937e2d56089207426dba0.tar.gz |
corrected a bunch of spelling typos
Diffstat (limited to 'lib/sqlalchemy/orm/deprecated_interfaces.py')
-rw-r--r-- | lib/sqlalchemy/orm/deprecated_interfaces.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/orm/deprecated_interfaces.py b/lib/sqlalchemy/orm/deprecated_interfaces.py index 135664469..9ebf9a57e 100644 --- a/lib/sqlalchemy/orm/deprecated_interfaces.py +++ b/lib/sqlalchemy/orm/deprecated_interfaces.py @@ -423,13 +423,13 @@ class SessionExtension(object): transaction is ongoing.""" def after_commit(self, session): - """Execute after a commit has occured. + """Execute after a commit has occurred. Note that this may not be per-flush if a longer running transaction is ongoing.""" def after_rollback(self, session): - """Execute after a rollback has occured. + """Execute after a rollback has occurred. Note that this may not be per-flush if a longer running transaction is ongoing.""" @@ -454,7 +454,7 @@ class SessionExtension(object): This will be when the 'new', 'dirty', and 'deleted' lists are in their final state. An actual commit() may or may not have - occured, depending on whether or not the flush started its own + occurred, depending on whether or not the flush started its own transaction or participated in a larger transaction. """ def after_begin( self, session, transaction, connection): |