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

Method dump

Tools/cases_generator/analyzer.py:205–210  ·  view source on GitHub ↗
(self, indent: str)

Source from the content-addressed store, hash-verified

203 instruction_size: int | None = None
204
205 def dump(self, indent: str) -> None:
206 print(
207 indent, self.name, ", ".join(self.annotations) if self.annotations else ""
208 )
209 print(indent, self.stack, ", ".join([str(c) for c in self.caches]))
210 self.properties.dump(" " + indent)
211
212 @property
213 def size(self) -> int:

Callers 5

dumpMethod · 0.45
dump_analysisFunction · 0.45
save_raw_dataFunction · 0.45
buildMethod · 0.45
mainFunction · 0.45

Calls 2

strFunction · 0.85
joinMethod · 0.45

Tested by

no test coverage detected