summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/base.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-08-13 18:47:52 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-08-13 18:47:52 -0400
commit44d21de457424f5623362474325aa6e5d3fe9e6d (patch)
treef86be2f10dcd2f00669c530ce0390711c5d9c2eb /lib/sqlalchemy/orm/base.py
parent38cb9bf78454b00792fc68f847165141c6f45be3 (diff)
downloadsqlalchemy-44d21de457424f5623362474325aa6e5d3fe9e6d.tar.gz
- rename _InspectionAttr to InspectionAttr
Diffstat (limited to 'lib/sqlalchemy/orm/base.py')
-rw-r--r--lib/sqlalchemy/orm/base.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/orm/base.py b/lib/sqlalchemy/orm/base.py
index 421d79630..3097b8590 100644
--- a/lib/sqlalchemy/orm/base.py
+++ b/lib/sqlalchemy/orm/base.py
@@ -173,10 +173,10 @@ MANYTOMANY = util.symbol(
NOT_EXTENSION = util.symbol(
'NOT_EXTENSION',
- """Symbol indicating an :class:`_InspectionAttr` that's
+ """Symbol indicating an :class:`InspectionAttr` that's
not part of sqlalchemy.ext.
- Is assigned to the :attr:`._InspectionAttr.extension_type`
+ Is assigned to the :attr:`.InspectionAttr.extension_type`
attibute.
""")
@@ -423,7 +423,7 @@ def class_mapper(class_, configure=True):
return mapper
-class _InspectionAttr(object):
+class InspectionAttr(object):
"""A base class applied to all ORM objects that can be returned
by the :func:`.inspect` function.
@@ -460,7 +460,7 @@ class _InspectionAttr(object):
:class:`.QueryableAttribute` which handles attributes events on behalf
of a :class:`.MapperProperty`. But can also be an extension type
such as :class:`.AssociationProxy` or :class:`.hybrid_property`.
- The :attr:`._InspectionAttr.extension_type` will refer to a constant
+ The :attr:`.InspectionAttr.extension_type` will refer to a constant
identifying the specific subtype.
.. seealso::