(self, prop)
| 644 | |
| 645 | class _ManyToOneDP(_DependencyProcessor): |
| 646 | def __init__(self, prop): |
| 647 | _DependencyProcessor.__init__(self, prop) |
| 648 | for mapper in self.mapper.self_and_descendants: |
| 649 | mapper._dependency_processors.append(_DetectKeySwitch(prop)) |
| 650 | |
| 651 | def per_property_dependencies( |
| 652 | self, |
nothing calls this directly
no test coverage detected