duplicate extensions, such as backref populators,
from being inserted into the list.
[ticket:1585]
+
+ - Fixed the call to get_committed_value() on CompositeProperty.
+ [ticket:1504]
- sql
- Fixed the "numeric" paramstyle, which apparently is the
return self.get_col_value(column, obj)
def getcommitted(self, state, column, passive=False):
- obj = state.get_impl(self.key).get_committed_value(state, passive=passive)
+ # TODO: no coverage here
+ obj = state.get_impl(self.key).get_committed_value(state, state.dict, passive=passive)
return self.get_col_value(column, obj)
def setattr(self, state, value, column):