Searched refs:maketrans (Results 1 – 16 of 16) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_strop.py | 106 self.assertTrue(strop.maketrans("abc", "xyz") == transtable) 107 self.assertRaises(ValueError, strop.maketrans, "abc", "xyzq")
|
D | test_string.py | 98 self.assertEqual(string.maketrans('abc', 'xyz'), transtable) 99 self.assertRaises(ValueError, string.maketrans, 'abc', 'xyzq')
|
D | string_tests.py | 1244 string.maketrans('abc', 'xyz') 1246 self.assertRaises(ValueError, string.maketrans, 'abc', 'xyzw') 1249 table = string.maketrans('abc', 'xyz') 1252 table = string.maketrans('a', 'A')
|
D | test_urllib2.py | 30 fname = fname.translate(string.maketrans("/.", "./"))
|
D | test_bigmem.py | 438 trans = string.maketrans('.aZ', '-!$')
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | stringold.py | 382 def maketrans(fromstr, tostr): function 429 from strop import maketrans, lowercase, uppercase, whitespace
|
D | string.py | 61 def maketrans(fromstr, tostr): function 528 from strop import maketrans, lowercase, uppercase, whitespace
|
D | textwrap.py | 74 whitespace_trans = string.maketrans(_whitespace, ' ' * len(_whitespace))
|
D | xmllib.py | 73 attrtrans = string.maketrans(' \r\n\t', ' ')
|
D | urllib.py | 1609 table = string.maketrans("", "")
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | fancy_getopt.py | 31 longopt_xlate = string.maketrans('-', '_') 408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | string.py | 61 def maketrans(fromstr, tostr): function 530 from strop import maketrans, lowercase, uppercase, whitespace
|
D | textwrap.py | 82 whitespace_trans = string.maketrans(_whitespace, ' ' * len(_whitespace))
|
D | xmllib.py | 73 attrtrans = string.maketrans(' \r\n\t', ' ')
|
D | zipfile.py | 1063 table = string.maketrans(illegal, '_' * len(illegal))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/ |
D | build_ext.py | 632 all_dots = string.maketrans('/'+os.sep, '..')
|