From: Mike Bayer Date: Mon, 13 Aug 2007 20:52:33 +0000 (+0000) Subject: docstirng... X-Git-Tag: rel_0_4beta2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e623c179da241c1f2bfd8ed5eeeea898d803ab52;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git docstirng... --- diff --git a/lib/sqlalchemy/orm/session.py b/lib/sqlalchemy/orm/session.py index 514da6008a..1dfd1b665c 100644 --- a/lib/sqlalchemy/orm/session.py +++ b/lib/sqlalchemy/orm/session.py @@ -128,7 +128,7 @@ class SessionExtension(object): class SessionTransaction(object): """Represents a Session-level Transaction. - This corresponds to one or more [sqlalchemy.engine_Transaction] + This corresponds to one or more [sqlalchemy.engine#Transaction] instances behind the scenes, with one ``Transaction`` per ``Engine`` in use. @@ -359,7 +359,7 @@ class Session(object): ``logging.getLogger('sqlalchemy.orm.unitofwork').setLevel(logging.DEBUG)``. extension - an optional [sqlalchemy.orm.session_SessionExtension] instance, which will receive + an optional [sqlalchemy.orm.session#SessionExtension] instance, which will receive pre- and post- commit and flush events, as well as a post-rollback event. User- defined code may be placed within these hooks using a user-defined subclass of ``SessionExtension``.