Sell a number of shares
(self, nshares)
| 16 | return self.shares * self.price |
| 17 | |
| 18 | def sell(self, nshares): |
| 19 | ''' |
| 20 | Sell a number of shares |
| 21 | ''' |
| 22 | self.shares -= nshares |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected