MCPcopy Create free account
hub / github.com/RustPython/RustPython / __repr__

Method __repr__

Lib/traceback.py:337–339  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

335 return iter([self.filename, self.lineno, self.name, self.line])
336
337 def __repr__(self):
338 return "<FrameSummary file {filename}, line {lineno} in {name}>".format(
339 filename=self.filename, lineno=self.lineno, name=self.name)
340
341 def __len__(self):
342 return 4

Callers

nothing calls this directly

Calls 1

formatMethod · 0.45

Tested by

no test coverage detected