Searched refs:ascii_lowercase (Results 1 - 16 of 16) sorted by relevance

/external/python/cpython3/Doc/includes/sqlite3/
H A Dexecutemany_2.py5 for c in string.ascii_lowercase:
/external/autotest/client/site_tests/login_RemoteOwnership/
H A Dlogin_RemoteOwnership.py50 self.username = (''.join(random.sample(string.ascii_lowercase,6)) +
52 password = ''.join(random.sample(string.ascii_lowercase,6))
/external/markdown/markdown/extensions/
H A Dheaderid.py71 from string import ascii_lowercase, digits, punctuation namespace
73 ID_CHARS = ascii_lowercase + digits + '-_'
/external/autotest/client/common_lib/cros/tendo/
H A Dbuffet_config.py24 RAND_CHARS = string.ascii_lowercase + string.digits
/external/python/cpython3/Lib/
H A Dstring.py6 ascii_lowercase -- a string containing all ASCII lowercase letters
17 __all__ = ["ascii_letters", "ascii_lowercase", "ascii_uppercase", "capwords",
25 ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz' variable
27 ascii_letters = ascii_lowercase + ascii_uppercase
/external/autotest/server/site_tests/network_WiFi_ChannelScanDwellTime/
H A Dnetwork_WiFi_ChannelScanDwellTime.py24 SUFFIX_LETTERS = string.ascii_lowercase + string.digits
/external/python/cpython2/Lib/
H A Dstring.py27 ascii_lowercase = lowercase variable
29 ascii_letters = ascii_lowercase + ascii_uppercase
/external/python/cpython3/Lib/test/
H A Dtest_string.py14 self.assertEqual(string.ascii_lowercase, 'abcdefghijklmnopqrstuvwxyz')
16 self.assertEqual(string.ascii_letters, string.ascii_lowercase + string.ascii_uppercase)
21 self.assertEqual(string.printable, string.digits + string.ascii_lowercase + string.ascii_uppercase + string.punctuation + string.whitespace)
H A Dtest_pipes.py14 s_command = 'tr %s %s' % (string.ascii_lowercase, string.ascii_uppercase)
/external/python/cpython2/Lib/idlelib/
H A DkeybindingDialog.py187 self.alphanumKeys=tuple(string.ascii_lowercase+string.digits)
212 if 'Shift' in modifiers and key in string.ascii_lowercase:
/external/python/cpython3/Lib/idlelib/
H A Dconfig_key.py191 self.alphanumKeys=tuple(string.ascii_lowercase+string.digits)
216 if 'Shift' in modifiers and key in string.ascii_lowercase:
/external/python/cpython2/Lib/test/
H A Dtest_pipes.py13 s_command = 'tr %s %s' % (string.ascii_lowercase, string.ascii_uppercase)
/external/autotest/client/cros/
H A Dcryptohome.py67 password = ''.join(random.sample(string.ascii_lowercase, 6))
718 password = ''.join(random.sample(string.ascii_lowercase, 6))
/external/autotest/client/common_lib/cros/network/
H A Dxmlrpc_security_types.py348 suffix_letters = string.ascii_lowercase + string.digits
/external/autotest/server/
H A Dsite_linux_router.py101 SUFFIX_LETTERS = string.ascii_lowercase + string.digits
/external/python/cpython3/Tools/scripts/
H A Dtexi2html.py2000 for sequence in string.digits, string.ascii_lowercase, string.ascii_uppercase:

Completed in 633 milliseconds