]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
remote_attr and local_attr refer to class bound attributes, not
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 25 Apr 2019 22:23:12 +0000 (17:23 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 25 Apr 2019 22:23:12 +0000 (17:23 -0500)
MapperProperty

Change-Id: If5fee69474f295e8c4bef891f5360f6b54080bbf

lib/sqlalchemy/ext/associationproxy.py

index d15eee62812c562b43bfcea9dee35fe011daf248..2e057fc020542369ab45bf8c94de792a9b79ed39 100644 (file)
@@ -433,7 +433,7 @@ class AssociationProxyInstance(object):
 
     @property
     def remote_attr(self):
-        """The 'remote' :class:`.MapperProperty` referenced by this
+        """The 'remote' class attribute referenced by this
         :class:`.AssociationProxyInstance`.
 
         .. seealso::
@@ -447,7 +447,7 @@ class AssociationProxyInstance(object):
 
     @property
     def local_attr(self):
-        """The 'local' :class:`.MapperProperty` referenced by this
+        """The 'local' class attribute referenced by this
         :class:`.AssociationProxyInstance`.
 
         .. seealso::