Add a line of output to the current request buffer. Assumes that the line does *not* end with \\r\\n.
(self, s)
| 1088 | "or an iterable, got %r" % type(data)) |
| 1089 | |
| 1090 | def _output(self, s): |
| 1091 | """Add a line of output to the current request buffer. |
| 1092 | |
| 1093 | Assumes that the line does *not* end with \\r\\n. |
| 1094 | """ |
| 1095 | self._buffer.append(s) |
| 1096 | |
| 1097 | def _read_readable(self, readable): |
| 1098 | if self.debuglevel > 0: |
no test coverage detected