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

Method __init__

example_code/item_050.py:85–87  ·  view source on GitHub ↗
(self, left, right)

Source from the content-addressed store, hash-verified

83
84class MultiplyNodeAlt(NodeAlt):
85 def __init__(self, left, right):
86 self.left = left
87 self.right = right
88
89 def evaluate(self):
90 left = self.left.evaluate()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected