(self)
| 336 | del sys.modules[modname] |
| 337 | |
| 338 | def test_file_utf_8(self): |
| 339 | extra = "z = '\u1234'; assert ord(z) == 0x1234\n" |
| 340 | self.check_encoding("utf-8", extra) |
| 341 | |
| 342 | def test_file_utf_8_error(self): |
| 343 | extra = "b'\x80'\n" |
nothing calls this directly
no test coverage detected