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

Method __init__

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

Source from the content-addressed store, hash-verified

179
180class Multiply:
181 def __init__(self, left, right):
182 self.left = left
183 self.right = right
184
185@my_evaluate.register(Multiply)
186def _(node):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected