(self, n: ast3.Starred)
| 2158 | |
| 2159 | # Used for Callable[[X *Ys, Z], R] etc. |
| 2160 | def visit_Starred(self, n: ast3.Starred) -> Type: |
| 2161 | return UnpackType(self.visit(n.value), from_star_syntax=True) |
| 2162 | |
| 2163 | # List(expr* elts, expr_context ctx) |
| 2164 | def visit_List(self, n: ast3.List) -> Type: |
nothing calls this directly
no test coverage detected