Sell a number of shares and return the remaining number.
(self, nshares)
| 31 | return self.shares * self.price |
| 32 | |
| 33 | def sell(self, nshares): |
| 34 | ''' |
| 35 | Sell a number of shares and return the remaining number. |
| 36 | ''' |
| 37 | self.shares -= nshares |
nothing calls this directly
no outgoing calls
no test coverage detected