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

Method __init__

example_code/item_049.py:182–184  ·  view source on GitHub ↗
(self, left, right)

Source from the content-addressed store, hash-verified

180
181class MultiplyNodeAlt(NodeAlt):
182 def __init__(self, left, right):
183 self.left = left
184 self.right = right
185
186 def evaluate(self):
187 left = self.left.evaluate()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected