(self, name, shares, price)
| 4 | __slots__ = ('name','_shares','_price') |
| 5 | _types = (str, int, float) |
| 6 | def __init__(self, name, shares, price): |
| 7 | self.name = name |
| 8 | self.shares = shares |
| 9 | self.price = price |
| 10 | |
| 11 | def __repr__(self): |
| 12 | # Note: The !r format code produces the repr() string |
nothing calls this directly
no outgoing calls
no test coverage detected