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

Method _visit_unsupported_expr

mypy/stubgen.py:405–407  ·  view source on GitHub ↗
(self, o: object)

Source from the content-addressed store, hash-verified

403 return self.stubgen.add_name("_typeshed.Incomplete")
404
405 def _visit_unsupported_expr(self, o: object) -> str:
406 # Something we do not understand.
407 return self.stubgen.add_name("_typeshed.Incomplete")
408
409 def visit_comparison_expr(self, o: ComparisonExpr) -> str:
410 return self._visit_unsupported_expr(o)

Callers 7

visit_comparison_exprMethod · 0.95
visit_cast_exprMethod · 0.95
visit_generator_exprMethod · 0.95

Calls 1

add_nameMethod · 0.80

Tested by

no test coverage detected