(self)
| 140 | # hack anyway this seems good enough. |
| 141 | |
| 142 | def _new_buffer(self): |
| 143 | # BytesGenerator overrides this to return BytesIO. |
| 144 | return StringIO() |
| 145 | |
| 146 | def _encode(self, s): |
| 147 | # BytesGenerator overrides this to encode strings to bytes. |
no test coverage detected