(self, s)
| 144 | return StringIO() |
| 145 | |
| 146 | def _encode(self, s): |
| 147 | # BytesGenerator overrides this to encode strings to bytes. |
| 148 | return s |
| 149 | |
| 150 | def _write_lines(self, lines): |
| 151 | # We have to transform the line endings. |
no outgoing calls
no test coverage detected