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

Method __str__

Lib/dis.py:434–438  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

432 return self.label is not None
433
434 def __str__(self):
435 output = io.StringIO()
436 formatter = Formatter(file=output)
437 formatter.print_instruction(self, False)
438 return output.getvalue()
439
440
441class Formatter:

Callers

nothing calls this directly

Calls 3

print_instructionMethod · 0.95
getvalueMethod · 0.95
FormatterClass · 0.70

Tested by

no test coverage detected