(self, prop)
| 640 | |
| 641 | class ManyToOneDP(DependencyProcessor): |
| 642 | def __init__(self, prop): |
| 643 | DependencyProcessor.__init__(self, prop) |
| 644 | for mapper in self.mapper.self_and_descendants: |
| 645 | mapper._dependency_processors.append(DetectKeySwitch(prop)) |
| 646 | |
| 647 | def per_property_dependencies( |
| 648 | self, |
nothing calls this directly
no test coverage detected