(self, line)
| 95 | return line |
| 96 | |
| 97 | def unreadline(self, line): |
| 98 | # Let the consumer push a line back into the buffer. |
| 99 | assert line is not NeedMoreData |
| 100 | self._lines.appendleft(line) |
| 101 | |
| 102 | def push(self, data): |
| 103 | """Push some new data into this object.""" |
no outgoing calls
no test coverage detected