Send a line of input to the transformer, returning the transformed input or None if the transformer is waiting for more input.
(self, line)
| 102 | return "CoroutineInputTransformer(coro={0!r})".format(self.coro) |
| 103 | |
| 104 | def push(self, line): |
| 105 | """Send a line of input to the transformer, returning the |
| 106 | transformed input or None if the transformer is waiting for more |
| 107 | input. |
| 108 | """ |
| 109 | return self.coro.send(line) |
| 110 | |
| 111 | def reset(self): |
| 112 | """Return, transformed any lines that the transformer has |
nothing calls this directly
no outgoing calls
no test coverage detected