(
self, against: Optional[OperatorType] = None
)
| 3208 | return (self,) |
| 3209 | |
| 3210 | def self_group( |
| 3211 | self, against: Optional[OperatorType] = None |
| 3212 | ) -> Union[Self, Grouping[bool]]: |
| 3213 | if not self.clauses: |
| 3214 | return self |
| 3215 | else: |
| 3216 | return super().self_group(against=against) |
| 3217 | |
| 3218 | |
| 3219 | and_ = BooleanClauseList.and_ |
nothing calls this directly
no test coverage detected