diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-08-13 18:47:52 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2014-08-13 18:47:52 -0400 |
| commit | 44d21de457424f5623362474325aa6e5d3fe9e6d (patch) | |
| tree | f86be2f10dcd2f00669c530ce0390711c5d9c2eb /lib/sqlalchemy/ext/associationproxy.py | |
| parent | 38cb9bf78454b00792fc68f847165141c6f45be3 (diff) | |
| download | sqlalchemy-44d21de457424f5623362474325aa6e5d3fe9e6d.tar.gz | |
- rename _InspectionAttr to InspectionAttr
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 |
