(self, o: mypy.nodes.StrExpr)
| 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)})" |