summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-02-14 00:41:20 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-02-14 00:41:20 +0000
commitabeb79c9f6e07b61b05cf53cc6cefde9eb3b8408 (patch)
tree97267ae9e22fde51dad8084671ec7c7e2ffb8fd4
parent791e2f7f7da88bd13a1002540755f920e6703711 (diff)
downloadsqlalchemy-abeb79c9f6e07b61b05cf53cc6cefde9eb3b8408.tar.gz
docstring...
-rw-r--r--lib/sqlalchemy/mapping/objectstore.py5
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