(self, n: ast3.Slice)
| 2095 | ) |
| 2096 | |
| 2097 | def visit_Slice(self, n: ast3.Slice) -> Type: |
| 2098 | return self.invalid_type(n, note="did you mean to use ',' instead of ':' ?") |
| 2099 | |
| 2100 | # Subscript(expr value, expr slice, expr_context ctx) |
| 2101 | def visit_Subscript(self, n: ast3.Subscript) -> Type: |
nothing calls this directly
no test coverage detected