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

Class StackEffect

Tools/cases_generator/analyzer.py:171–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169
170@dataclass
171class StackEffect:
172 inputs: list[StackItem]
173 outputs: list[StackItem]
174
175 def __str__(self) -> str:
176 return f"({', '.join([str(i) for i in self.inputs])} -- {', '.join([str(i) for i in self.outputs])})"
177
178
179@dataclass

Callers 1

analyze_stackFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…