Searched refs:TESTFN_UNDECODABLE (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Lib/test/libregrtest/ |
H A D | setup.py | 8 from test.support.os_helper import TESTFN_UNDECODABLE, FS_NONASCII namespace 108 if TESTFN_UNDECODABLE and os.supports_bytes_environ: 109 os.environb.setdefault(UNICODE_GUARD_ENV.encode(), TESTFN_UNDECODABLE)
|
/third_party/python/Lib/test/support/ |
H A D | os_helper.py | 117 # TESTFN_UNDECODABLE is a filename (bytes type) that should *not* be able to be 120 # sequence). On UNIX, TESTFN_UNDECODABLE can be decoded by os.fsdecode() thanks 123 TESTFN_UNDECODABLE = None variable 144 TESTFN_UNDECODABLE = os.fsencode(TESTFN_ASCII) + name variable
|
/third_party/python/Lib/test/test_sqlite3/ |
H A D | test_dbapi.py | 39 from test.support.os_helper import TESTFN, TESTFN_UNDECODABLE, unlink, temp_dir, FakePath namespace 664 @unittest.skipUnless(TESTFN_UNDECODABLE, "only works if there are undecodable paths") 666 path = TESTFN_UNDECODABLE 710 @unittest.skipUnless(TESTFN_UNDECODABLE, "only works if there are undecodable paths") 712 path = TESTFN_UNDECODABLE
|
/third_party/python/Lib/test/ |
H A D | test_cmd_line_script.py | 562 if (os_helper.TESTFN_UNDECODABLE 564 name = os.fsdecode(os_helper.TESTFN_UNDECODABLE)
|
H A D | test_genericpath.py | 486 if (os_helper.TESTFN_UNDECODABLE 492 name = os_helper.TESTFN_UNDECODABLE
|
H A D | test_httpservers.py | 417 @unittest.skipUnless(os_helper.TESTFN_UNDECODABLE, 418 'need os_helper.TESTFN_UNDECODABLE') 421 filename = os.fsdecode(os_helper.TESTFN_UNDECODABLE) + '.txt' 423 f.write(os_helper.TESTFN_UNDECODABLE) 440 data=os_helper.TESTFN_UNDECODABLE)
|
H A D | test_os.py | 3826 if os_helper.TESTFN_UNDECODABLE is not None: 3827 encoded = os_helper.TESTFN_UNDECODABLE
|
Completed in 14 milliseconds