From: Mike Bayer Date: Thu, 25 Apr 2019 22:23:12 +0000 (-0500) Subject: remote_attr and local_attr refer to class bound attributes, not X-Git-Tag: rel_1_3_4~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6874ee22771e3e91dfa794c4287dcc812f6e0fc5;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git remote_attr and local_attr refer to class bound attributes, not MapperProperty Change-Id: If5fee69474f295e8c4bef891f5360f6b54080bbf --- diff --git a/lib/sqlalchemy/ext/associationproxy.py b/lib/sqlalchemy/ext/associationproxy.py index d15eee6281..2e057fc020 100644 --- a/lib/sqlalchemy/ext/associationproxy.py +++ b/lib/sqlalchemy/ext/associationproxy.py @@ -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::