Writes data to stdout as bytes. :param b: data to write
(self, b)
| 329 | self._stdout = stdout |
| 330 | |
| 331 | def write(self, b): |
| 332 | """ |
| 333 | Writes data to stdout as bytes. |
| 334 | |
| 335 | :param b: data to write |
| 336 | """ |
| 337 | bytes_print(b, self._stdout) |
| 338 | |
| 339 | |
| 340 | def guess_content_type(filename): |