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