MCPcopy Index your code
hub / github.com/python/mypy / visit_set_expr

Method visit_set_expr

mypy/checkexpr.py:5170–5171  ·  view source on GitHub ↗
(self, e: SetExpr)

Source from the content-addressed store, hash-verified

5168 return self.check_lst_expr(e, "builtins.list", "<list>")
5169
5170 def visit_set_expr(self, e: SetExpr) -> Type:
5171 return self.check_lst_expr(e, "builtins.set", "<set>")
5172
5173 def fast_container_type(
5174 self, e: ListExpr | SetExpr | TupleExpr, container_fullname: str

Callers

nothing calls this directly

Calls 1

check_lst_exprMethod · 0.95

Tested by

no test coverage detected