summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/interfaces.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2010-03-22 16:54:58 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2010-03-22 16:54:58 -0400
commitefcc9d782274ee1d5eb08855d50aaf627d76a073 (patch)
tree31cae73c4ff82efd51e5b14538d4518fd43081a6 /lib/sqlalchemy/orm/interfaces.py
parente62b7d408774941184b286e216806074a72ddfdb (diff)
downloadsqlalchemy-efcc9d782274ee1d5eb08855d50aaf627d76a073.tar.gz
and here's where it gets *fun* ! so much for being easy
Diffstat (limited to 'lib/sqlalchemy/orm/interfaces.py')
-rw-r--r--lib/sqlalchemy/orm/interfaces.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/lib/sqlalchemy/orm/interfaces.py b/lib/sqlalchemy/orm/interfaces.py
index 03ebb97c4..c773e74f6 100644
--- a/lib/sqlalchemy/orm/interfaces.py
+++ b/lib/sqlalchemy/orm/interfaces.py
@@ -646,7 +646,7 @@ class StrategizedProperty(MapperProperty):
"""
- def __get_context_strategy(self, context, path):
+ def _get_context_strategy(self, context, path):
cls = context.attributes.get(("loaderstrategy", _reduce_path(path)), None)
if cls:
try:
@@ -668,11 +668,11 @@ class StrategizedProperty(MapperProperty):
return strategy
def setup(self, context, entity, path, adapter, **kwargs):
- self.__get_context_strategy(context, path + (self.key,)).\
+ self._get_context_strategy(context, path + (self.key,)).\
setup_query(context, entity, path, adapter, **kwargs)
def create_row_processor(self, context, path, mapper, row, adapter):
- return self.__get_context_strategy(context, path + (self.key,)).\
+ return self._get_context_strategy(context, path + (self.key,)).\
create_row_processor(context, path, mapper, row, adapter)
def do_init(self):
@@ -775,12 +775,17 @@ class PropertyOption(MapperOption):
isa = True
for ent in query._mapper_entities:
- if searchfor is ent.path_entity or (isa and searchfor.common_parent(ent.path_entity)):
+ if searchfor is ent.path_entity or (
+ isa and
+ searchfor.common_parent(ent.path_entity)):
return ent
else:
if raiseerr:
- raise sa_exc.ArgumentError("Can't find entity %s in Query. Current list: %r"
- % (searchfor, [str(m.path_entity) for m in query._entities]))
+ raise sa_exc.ArgumentError(
+ "Can't find entity %s in Query. Current list: %r"
+ % (searchfor, [
+ str(m.path_entity) for m in query._entities
+ ]))
else:
return None
@@ -921,7 +926,7 @@ class StrategizedOption(PropertyOption):
return False
def process_query_property(self, query, paths, mappers):
- # __get_context_strategy may receive the path in terms of
+ # _get_context_strategy may receive the path in terms of
# a base mapper - e.g. options(eagerload_all(Company.employees, Engineer.machines))
# in the polymorphic tests leads to "(Person, 'machines')" in
# the path due to the mechanics of how the eager strategy builds