(self, new_exprs)
| 80 | return [self.lhs, self.rhs] |
| 81 | |
| 82 | def set_source_expressions(self, new_exprs): |
| 83 | if len(new_exprs) == 1: |
| 84 | self.lhs = new_exprs[0] |
| 85 | else: |
| 86 | self.lhs, self.rhs = new_exprs |
| 87 | |
| 88 | def get_prep_lookup(self): |
| 89 | if not self.prepare_rhs or hasattr(self.rhs, "resolve_expression"): |