(self, state, passive=attributes.PASSIVE_OFF)
| 1284 | } |
| 1285 | |
| 1286 | def __call__(self, state, passive=attributes.PASSIVE_OFF): |
| 1287 | key = self.key |
| 1288 | instance_mapper = state.manager.mapper |
| 1289 | prop = instance_mapper._props[key] |
| 1290 | strategy = prop._strategies[self.strategy_key] |
| 1291 | |
| 1292 | return strategy._load_for_state( |
| 1293 | state, |
| 1294 | passive, |
| 1295 | loadopt=self.loadopt, |
| 1296 | extra_criteria=self.extra_criteria, |
| 1297 | ) |
| 1298 | |
| 1299 | |
| 1300 | class _PostLoader(_AbstractRelationshipLoader): |
nothing calls this directly
no test coverage detected