(self, clause)
| 3086 | ) |
| 3087 | |
| 3088 | def append(self, clause): |
| 3089 | if self.group_contents: |
| 3090 | self.clauses.append( |
| 3091 | coercions.expect(self._text_converter_role, clause).self_group( |
| 3092 | against=self.operator |
| 3093 | ) |
| 3094 | ) |
| 3095 | else: |
| 3096 | self.clauses.append( |
| 3097 | coercions.expect(self._text_converter_role, clause) |
| 3098 | ) |
| 3099 | |
| 3100 | @util.ro_non_memoized_property |
| 3101 | def _from_objects(self) -> List[FromClause]: |