Sell a number of shares and return the remaining number.
(self, nshares)
| 26 | return self.shares * self.price |
| 27 | |
| 28 | def sell(self, nshares): |
| 29 | ''' |
| 30 | Sell a number of shares and return the remaining number. |
| 31 | ''' |
| 32 | self.shares -= nshares |
nothing calls this directly
no outgoing calls
no test coverage detected