diff options
| author | Rodrigo Menezes <rodrigo.menezes@moat.com> | 2014-08-14 17:08:55 -0400 |
|---|---|---|
| committer | Rodrigo Menezes <rodrigo.menezes@moat.com> | 2014-08-14 17:08:55 -0400 |
| commit | 8af9c7670e07037259dc89510559d34a4e7ccc6f (patch) | |
| tree | 0c3a79ffbf82387177d1c236f4148731a0e06b4f /lib/sqlalchemy/ext/associationproxy.py | |
| parent | 649f06759d933f4aacdfbb302e845e2bcb5e7641 (diff) | |
| parent | e2d05259caf2c7c033a0a9376c0d3b7a1b040183 (diff) | |
| download | sqlalchemy-8af9c7670e07037259dc89510559d34a4e7ccc6f.tar.gz | |
Merge branch 'master' of https://github.com/rclmenezes/sqlalchemy
Diffstat (limited to 'lib/sqlalchemy/ext/associationproxy.py')
| -rw-r--r-- | lib/sqlalchemy/ext/associationproxy.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/ext/associationproxy.py b/lib/sqlalchemy/ext/associationproxy.py index a987ab413..1aa68ac32 100644 --- a/lib/sqlalchemy/ext/associationproxy.py +++ b/lib/sqlalchemy/ext/associationproxy.py @@ -77,16 +77,16 @@ def association_proxy(target_collection, attr, **kw): ASSOCIATION_PROXY = util.symbol('ASSOCIATION_PROXY') -"""Symbol indicating an :class:`_InspectionAttr` that's +"""Symbol indicating an :class:`InspectionAttr` that's of type :class:`.AssociationProxy`. - Is assigned to the :attr:`._InspectionAttr.extension_type` + Is assigned to the :attr:`.InspectionAttr.extension_type` attibute. """ -class AssociationProxy(interfaces._InspectionAttr): +class AssociationProxy(interfaces.InspectionAttr): """A descriptor that presents a read/write view of an object attribute.""" is_attribute = False |
