Return the cost as shares*price
(self)
| 25 | |
| 26 | @property |
| 27 | def cost(self): |
| 28 | ''' |
| 29 | Return the cost as shares*price |
| 30 | ''' |
| 31 | return self.shares * self.price |
| 32 | |
| 33 | def sell(self, nshares): |
| 34 | ''' |
nothing calls this directly
no outgoing calls
no test coverage detected