Home
last modified time | relevance | path

Searched refs:TESTFN_ENCODING (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_unicode_file.py9 from test.test_support import TESTFN_ENCODING, TESTFN_UNENCODABLE
11 TESTFN_ENCODED = TESTFN_UNICODE.encode(TESTFN_ENCODING)
17 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
24 TESTFN_ENCODED = TESTFN_UNICODE.encode(TESTFN_ENCODING)
31 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
62 base = base.decode(TESTFN_ENCODING)
67 file_list = [f.decode(TESTFN_ENCODING) for f in file_list]
128 cwd_result = os.getcwd().decode(TESTFN_ENCODING)
129 name_result = make_name.decode(TESTFN_ENCODING)
Dtest_genericpath.py233 fsencoding = test_support.TESTFN_ENCODING or "ascii"
Dtest_support.py364 TESTFN_ENCODING = sys.getfilesystemencoding() variable