Reset the input buffer.
(self)
| 198 | self.resetbuffer() |
| 199 | |
| 200 | def resetbuffer(self): |
| 201 | """Reset the input buffer.""" |
| 202 | self.buffer = [] |
| 203 | |
| 204 | def interact(self, banner=None, exitmsg=None): |
| 205 | """Closely emulate the interactive Python console. |
no outgoing calls
no test coverage detected