Writes the concatenated list of strings to the stream using .write().
(self, list)
| 381 | self.stream.write(data) |
| 382 | |
| 383 | def writelines(self, list): |
| 384 | |
| 385 | """ Writes the concatenated list of strings to the stream |
| 386 | using .write(). |
| 387 | """ |
| 388 | self.write(''.join(list)) |
| 389 | |
| 390 | def reset(self): |
| 391 |
no test coverage detected