summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/orm/properties.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/orm/properties.py')
-rw-r--r--lib/sqlalchemy/orm/properties.py67
1 files changed, 31 insertions, 36 deletions
diff --git a/lib/sqlalchemy/orm/properties.py b/lib/sqlalchemy/orm/properties.py
index da6d309e0..d1b725c8e 100644
--- a/lib/sqlalchemy/orm/properties.py
+++ b/lib/sqlalchemy/orm/properties.py
@@ -830,47 +830,42 @@ class RelationshipProperty(StrategizedProperty):
passive = attributes.PASSIVE_OFF
if type_ == 'save-update':
- instances = state.manager[self.key].impl.get_all_pending(state, dict_)
+ tuples = state.manager[self.key].impl.\
+ get_all_pending(state, dict_)
else:
- instances = state.value_as_iterable(dict_, self.key,
- passive=passive)
+ tuples = state.value_as_iterable(dict_, self.key,
+ passive=passive)
+
skip_pending = type_ == 'refresh-expire' and 'delete-orphan' \
not in self.cascade
- if instances:
- for c in instances:
- if c is not None and \
- c is not attributes.PASSIVE_NO_RESULT:
-
- instance_state = attributes.instance_state(c)
- if instance_state in visited_states:
- continue
-
- instance_dict = attributes.instance_dict(c)
-
- if halt_on and halt_on(instance_state):
- continue
-
- if skip_pending and not instance_state.key:
- continue
-
- instance_mapper = instance_state.manager.mapper
-
- if not instance_mapper.isa(self.mapper.class_manager.mapper):
- raise AssertionError("Attribute '%s' on class '%s' "
- "doesn't handle objects "
- "of type '%s'" % (
- self.key,
- self.parent.class_,
- c.__class__
- ))
-
- visited_states.add(instance_state)
-
- # cascade using the mapper local to this
- # object, so that its individual properties are located
- yield c, instance_mapper, instance_state, instance_dict
+ for instance_state, c in tuples:
+ if instance_state in visited_states:
+ continue
+
+ instance_dict = attributes.instance_dict(c)
+
+ if halt_on and halt_on(instance_state):
+ continue
+
+ if skip_pending and not instance_state.key:
+ continue
+
+ instance_mapper = instance_state.manager.mapper
+
+ if not instance_mapper.isa(self.mapper.class_manager.mapper):
+ raise AssertionError("Attribute '%s' on class '%s' "
+ "doesn't handle objects "
+ "of type '%s'" % (
+ self.key,
+ self.parent.class_,
+ c.__class__
+ ))
+
+ visited_states.add(instance_state)
+
+ yield c, instance_mapper, instance_state, instance_dict
def _add_reverse_property(self, key):