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