()
| 211 | |
| 212 | |
| 213 | def unops() -> list[OpsType]: |
| 214 | return [ |
| 215 | ([(None, None)], required_method_unary, {}), |
| 216 | (UNARY_OPS, template_unary, {}), |
| 217 | (OTHER_UNARY_METHODS, template_other_unary, {}), |
| 218 | ] |
| 219 | |
| 220 | |
| 221 | # We use short names T_DA and T_DS to keep below 88 lines so |
no outgoing calls
no test coverage detected
searching dependent graphs…