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