(self, n: ast3.Tuple)
| 2123 | return self.invalid_type(n) |
| 2124 | |
| 2125 | def visit_Tuple(self, n: ast3.Tuple) -> Type: |
| 2126 | return TupleType( |
| 2127 | self.translate_expr_list(n.elts), |
| 2128 | _dummy_fallback, |
| 2129 | implicit=True, |
| 2130 | line=self.line, |
| 2131 | column=self.convert_column(n.col_offset), |
| 2132 | ) |
| 2133 | |
| 2134 | def visit_Dict(self, n: ast3.Dict) -> Type: |
| 2135 | if not n.keys: |
nothing calls this directly
no test coverage detected