summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ext
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-04-25 17:23:12 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2019-04-25 17:23:12 -0500
commit6874ee22771e3e91dfa794c4287dcc812f6e0fc5 (patch)
tree9a5a47664bf3af5b00bce0b301e76d43b600a7fd /lib/sqlalchemy/ext
parent049386648b6bf37194cab05a82842b00fffd4db0 (diff)
downloadsqlalchemy-6874ee22771e3e91dfa794c4287dcc812f6e0fc5.tar.gz
remote_attr and local_attr refer to class bound attributes, not
MapperProperty Change-Id: If5fee69474f295e8c4bef891f5360f6b54080bbf
Diffstat (limited to 'lib/sqlalchemy/ext')
-rw-r--r--lib/sqlalchemy/ext/associationproxy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/ext/associationproxy.py b/lib/sqlalchemy/ext/associationproxy.py
index d15eee628..2e057fc02 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::