(t: Type)
| 478 | |
| 479 | |
| 480 | def is_complex(t: Type) -> bool: |
| 481 | t = get_proper_type(t) |
| 482 | return is_generic(t) or isinstance(t, (FunctionLike, TupleType, TypeVarType)) |
| 483 | |
| 484 | |
| 485 | def is_special_form_any(t: AnyType) -> bool: |
no test coverage detected
searching dependent graphs…