Write a list (or any iterable) of data bytes to the transport. The default implementation concatenates the arguments and calls write() on the result.
(self, list_of_data)
| 222 | self._ssl_protocol._write_appdata((data,)) |
| 223 | |
| 224 | def writelines(self, list_of_data): |
| 225 | """Write a list (or any iterable) of data bytes to the transport. |
| 226 | |
| 227 | The default implementation concatenates the arguments and |
| 228 | calls write() on the result. |
| 229 | """ |
| 230 | self._ssl_protocol._write_appdata(list_of_data) |
| 231 | |
| 232 | def write_eof(self): |
| 233 | """Close the write end after flushing buffered data. |
nothing calls this directly
no test coverage detected