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

Method visit_str_expr

mypy/strconv.py:375–376  ·  view source on GitHub ↗
(self, o: mypy.nodes.StrExpr)

Source from the content-addressed store, hash-verified

373 return f"IntExpr({o.value})"
374
375 def visit_str_expr(self, o: mypy.nodes.StrExpr) -> str:
376 return f"StrExpr({self.str_repr(o.value)})"
377
378 def visit_bytes_expr(self, o: mypy.nodes.BytesExpr) -> str:
379 return f"BytesExpr({self.str_repr(o.value)})"

Callers 1

acceptMethod · 0.45

Calls 1

str_reprMethod · 0.95

Tested by

no test coverage detected