MCPcopy Create free account
hub / github.com/bslatkin/effectivepython / evaluate

Method evaluate

example_code/item_049.py:170–173  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

168 self.right = right
169
170 def evaluate(self):
171 left = self.left.evaluate()
172 right = self.right.evaluate()
173 return left + right
174
175
176 def pretty(self):

Callers

nothing calls this directly

Calls 1

evaluateMethod · 0.45

Tested by

no test coverage detected