MCPcopy Create free account
hub / github.com/dabeaz-course/python-mastery / __init__

Method __init__

Solutions/7_3/validate.py:150–153  ·  view source on GitHub ↗
(self, name, shares, price)

Source from the content-addressed store, hash-verified

148 shares = PositiveInteger()
149 price = PositiveFloat()
150 def __init__(self, name, shares, price):
151 self.name = name
152 self.shares = shares
153 self.price = price
154
155 def __repr__(self):
156 return f'Stock({self.name!r}, {self.shares!r}, {self.price!r})'

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected