(
cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]]
)
| 4705 | |
| 4706 | @classmethod |
| 4707 | def _create_except( |
| 4708 | cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]] |
| 4709 | ) -> CompoundSelect[Unpack[_Ts]]: |
| 4710 | return CompoundSelect(_CompoundSelectKeyword.EXCEPT, *selects) |
| 4711 | |
| 4712 | @classmethod |
| 4713 | def _create_except_all( |
no test coverage detected