# coding=latin2 import sys import unittest import test.test_support class SysPathTest(unittest.TestCase): def test_append_unicodepath(self): sys.path.append(u'/home/tr\xf6\xf6t') # \xf6 = german o umlaut import ttt def test_main(): test.test_support.run_unittest(SysPathTest) if __name__ == "__main__": test_main()