Return the input source and perform a full reset.
(self)
| 343 | self._is_invalid = False |
| 344 | |
| 345 | def source_reset(self): |
| 346 | """Return the input source and perform a full reset. |
| 347 | """ |
| 348 | out = self.source |
| 349 | self.reset() |
| 350 | return out |
| 351 | |
| 352 | def check_complete(self, source): |
| 353 | """Return whether a block of code is ready to execute, or should be continued |