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