(self, fname, encoding)
| 435 | self.repl = create_repl() |
| 436 | |
| 437 | def write_startup_file(self, fname, encoding): |
| 438 | with open(fname, mode="w", encoding=encoding) as f: |
| 439 | f.write("# coding: ") |
| 440 | f.write(encoding) |
| 441 | f.write("\n") |
| 442 | f.write('a = "äöü"\n') |
| 443 | |
| 444 | def test_startup_event_utf8(self): |
| 445 | with tempfile.NamedTemporaryFile() as temp: |
no test coverage detected