Return, transformed any lines that the transformer has accumulated, and reset its internal state.
(self)
| 109 | return self.coro.send(line) |
| 110 | |
| 111 | def reset(self): |
| 112 | """Return, transformed any lines that the transformer has |
| 113 | accumulated, and reset its internal state. |
| 114 | """ |
| 115 | return self.coro.send(None) |
| 116 | |
| 117 | class TokenInputTransformer(InputTransformer): |
| 118 | """Wrapper for a token-based input transformer. |
nothing calls this directly
no outgoing calls
no test coverage detected