(self)
| 3855 | t = self.TextIOWrapper(F(), encoding='utf-8') |
| 3856 | |
| 3857 | def test_reconfigure_locale(self): |
| 3858 | wrapper = self.TextIOWrapper(self.BytesIO(b"test")) |
| 3859 | wrapper.reconfigure(encoding="locale") |
| 3860 | |
| 3861 | def test_reconfigure_encoding_read(self): |
| 3862 | # latin1 -> utf8 |
nothing calls this directly
no test coverage detected