Return the cost as shares*price
(self)
| 20 | |
| 21 | @property |
| 22 | def cost(self): |
| 23 | ''' |
| 24 | Return the cost as shares*price |
| 25 | ''' |
| 26 | return self.shares * self.price |
| 27 | |
| 28 | def sell(self, nshares): |
| 29 | ''' |
nothing calls this directly
no outgoing calls
no test coverage detected