(self, t: Parameters)
| 1126 | return result |
| 1127 | |
| 1128 | def visit_parameters(self, t: Parameters) -> Type: |
| 1129 | raise NotImplementedError("ParamSpec literals cannot have unbound TypeVars") |
| 1130 | |
| 1131 | def visit_callable_type( |
| 1132 | self, t: CallableType, nested: bool = True, namespace: str = "" |
nothing calls this directly
no test coverage detected