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

Method str_with_options

mypy/nodes.py:234–237  ·  view source on GitHub ↗
(self, options: Options)

Source from the content-addressed store, hash-verified

232 return self.accept(mypy.strconv.StrConv(options=Options()))
233
234 def str_with_options(self, options: Options) -> str:
235 a = self.accept(mypy.strconv.StrConv(options=options))
236 assert a
237 return a
238
239 def accept(self, visitor: NodeVisitor[T]) -> T:
240 raise RuntimeError("Not implemented", type(self))

Callers

nothing calls this directly

Calls 1

acceptMethod · 0.95

Tested by

no test coverage detected