(self)
| 1195 | t = self.TextIOWrapper(F(), encoding='utf-8') |
| 1196 | |
| 1197 | def test_reconfigure_locale(self): |
| 1198 | wrapper = self.TextIOWrapper(self.BytesIO(b"test")) |
| 1199 | wrapper.reconfigure(encoding="locale") |
| 1200 | |
| 1201 | def test_reconfigure_encoding_read(self): |
| 1202 | # latin1 -> utf8 |
nothing calls this directly
no test coverage detected