(self, clause: ClauseElement, annotation: str)
| 2595 | return _deep_deannotate(self.primaryjoin) |
| 2596 | |
| 2597 | def _has_annotation(self, clause: ClauseElement, annotation: str) -> bool: |
| 2598 | for col in visitors.iterate(clause, {}): |
| 2599 | if annotation in col._annotations: |
| 2600 | return True |
| 2601 | else: |
| 2602 | return False |
| 2603 | |
| 2604 | @util.memoized_property |
| 2605 | def _has_foreign_annotations(self) -> bool: |
no test coverage detected