(filename)
| 19 | raise unittest.SkipTest("No Unicode filesystem semantics on this platform.") |
| 20 | |
| 21 | def remove_if_exists(filename): |
| 22 | if os.path.exists(filename): |
| 23 | os.unlink(filename) |
| 24 | |
| 25 | class TestUnicodeFiles(unittest.TestCase): |
| 26 | # The 'do_' functions are the actual tests. They generally assume the |
no test coverage detected
searching dependent graphs…