(self, adapt_to_entity)
| 688 | return self._comparator |
| 689 | |
| 690 | def adapt_to_entity(self, adapt_to_entity): |
| 691 | return self.__class__( |
| 692 | adapt_to_entity.entity, |
| 693 | self.key, |
| 694 | self.descriptor, |
| 695 | self._comparator, |
| 696 | adapt_to_entity, |
| 697 | ) |
| 698 | |
| 699 | def _clone(self, **kw): |
| 700 | return self.__class__( |
no outgoing calls
no test coverage detected