diff options
| -rw-r--r-- | lib/sqlalchemy/mapping/objectstore.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/sqlalchemy/mapping/objectstore.py b/lib/sqlalchemy/mapping/objectstore.py index c1549ffb7..405013153 100644 --- a/lib/sqlalchemy/mapping/objectstore.py +++ b/lib/sqlalchemy/mapping/objectstore.py @@ -27,10 +27,7 @@ __all__ = ['get_id_key', 'get_row_key', 'is_dirty', 'import_instance', 'commit', LOG = False class Session(object): - """a scope-managed proxy to UnitOfWork instances. Operations are delegated - to UnitOfWork objects which are accessed via a sqlalchemy.util.ScopedRegistry object. - The registry is capable of maintaining object instances on a thread-local, - per-application, or custom user-defined basis.""" + """Maintains a UnitOfWork instance, including transaction state.""" def __init__(self, nest_transactions=False, hash_key=None): """Initialize the objectstore with a UnitOfWork registry. If called |
