summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2017-04-17 15:33:12 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2017-04-17 15:33:12 -0400
commitc2834f9298ddf14c0177e862b344de9e526cdf35 (patch)
treeb6ccb07aabe8fd66e8a0730c64f4edb2dee01d12
parent212132958f6cde1bbfcb91d2876e81d9d43c640f (diff)
downloadsqlalchemy-c2834f9298ddf14c0177e862b344de9e526cdf35.tar.gz
- remove errant doctest comment
Change-Id: Idb8520ff807074ceca36645728a63b79d1cdff6c
-rw-r--r--doc/build/orm/loading_relationships.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/build/orm/loading_relationships.rst b/doc/build/orm/loading_relationships.rst
index 1b37364ce..69bd7d1a1 100644
--- a/doc/build/orm/loading_relationships.rst
+++ b/doc/build/orm/loading_relationships.rst
@@ -48,7 +48,7 @@ same result set as that of the parent:
{sql}>>> jack = session.query(User).\
... options(joinedload('addresses')).\
- ... filter_by(name='jack').all() #doctest: +NORMALIZE_WHITESPACE
+ ... filter_by(name='jack').all()
SELECT addresses_1.id AS addresses_1_id, addresses_1.email_address AS addresses_1_email_address,
addresses_1.user_id AS addresses_1_user_id, users.id AS users_id, users.name AS users_name,
users.fullname AS users_fullname, users.password AS users_password
@@ -183,7 +183,7 @@ Polymorphic Eager Loading
Specification of polymorpic options on a per-eager-load basis is supported.
See the section :ref:`eagerloading_polymorphic_subtypes` for examples
-of the :meth:`.PropComparator.of_type` method in conjunction with the
+of the :meth:`.PropComparator.of_type` method in conjunction with the
:func:`.orm.with_polymorphic` function.
Default Loading Strategies