Mockable helper that writes s to self._out.
(self, s)
| 122 | self._lines += self._attr.SplitLine(line, self._width) |
| 123 | |
| 124 | def _Write(self, s): |
| 125 | """Mockable helper that writes s to self._out.""" |
| 126 | self._out.write(s) |
| 127 | |
| 128 | def _GetSearchCommand(self, c): |
| 129 | """Consumes a search command and returns the equivalent pager command. |
no outgoing calls
no test coverage detected