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

Method visit_lambda_expr

mypy/partially_defined.py:494–497  ·  view source on GitHub ↗
(self, o: LambdaExpr)

Source from the content-addressed store, hash-verified

492 self.tracker.skip_branch()
493
494 def visit_lambda_expr(self, o: LambdaExpr) -> None:
495 self.tracker.enter_scope(ScopeType.Func)
496 super().visit_lambda_expr(o)
497 self.tracker.exit_scope()
498
499 def visit_assert_stmt(self, o: AssertStmt) -> None:
500 super().visit_assert_stmt(o)

Callers

nothing calls this directly

Calls 2

exit_scopeMethod · 0.80
enter_scopeMethod · 0.45

Tested by

no test coverage detected