]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Added support for new :attr:`.Session.info` attribute to
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 19 Nov 2013 19:21:20 +0000 (14:21 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 19 Nov 2013 19:21:20 +0000 (14:21 -0500)
:class:`.scoped_session`.

doc/build/changelog/changelog_09.rst
lib/sqlalchemy/orm/scoping.py

index 5eaf78b9d186af533d0fc85f37330a26fd015072..0427741ccbc79eb928294a87d9b967b68a629664 100644 (file)
 .. changelog::
     :version: 0.9.0b2
 
+    .. change::
+        :tags: bug, orm
+
+        Added support for new :attr:`.Session.info` attribute to
+        :class:`.scoped_session`.
+
     .. change::
         :tags: removed
 
index 6393b74a771d3824560249705fb0e7606d052901..8d9ab319a54b881b4e7a2aeacb2e7611d64ee5f3 100644 (file)
@@ -163,7 +163,7 @@ def makeprop(name):
     return property(get, set)
 
 for prop in ('bind', 'dirty', 'deleted', 'new', 'identity_map',
-             'is_active', 'autoflush', 'no_autoflush'):
+             'is_active', 'autoflush', 'no_autoflush', 'info'):
     setattr(scoped_session, prop, makeprop(prop))