(self, clause)
| 2803 | ) |
| 2804 | |
| 2805 | def append(self, clause): |
| 2806 | if self.group_contents: |
| 2807 | self.clauses.append( |
| 2808 | coercions.expect(self._text_converter_role, clause).self_group( |
| 2809 | against=self.operator |
| 2810 | ) |
| 2811 | ) |
| 2812 | else: |
| 2813 | self.clauses.append( |
| 2814 | coercions.expect(self._text_converter_role, clause) |
| 2815 | ) |
| 2816 | |
| 2817 | @util.ro_non_memoized_property |
| 2818 | def _from_objects(self) -> List[FromClause]: |