MCPcopy Index your code
hub / github.com/python/cpython / __repr__

Method __repr__

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

Source from the content-addressed store, hash-verified

351 return iter([self.filename, self.lineno, self.name, self.line])
352
353 def __repr__(self):
354 return "<FrameSummary file {filename}, line {lineno} in {name}>".format(
355 filename=self.filename, lineno=self.lineno, name=self.name)
356
357 def __len__(self):
358 return 4

Callers

nothing calls this directly

Calls 1

formatMethod · 0.45

Tested by

no test coverage detected