]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
docstring...
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 14 Feb 2006 00:41:20 +0000 (00:41 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 14 Feb 2006 00:41:20 +0000 (00:41 +0000)
lib/sqlalchemy/mapping/objectstore.py

index c1549ffb73e69d8080bd3b8f1fbb7eb8d6b0a25c..40501315321cc6c8011d9d874b9f3e4f2b34b7bc 100644 (file)
@@ -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