Searched refs:ID_CHARS (Results 1 - 3 of 3) sorted by relevance

/external/markdown/markdown/extensions/
H A Dheaderid.py73 ID_CHARS = ascii_lowercase + digits + '-_' variable
159 if c in ID_CHARS:
/external/python/cpython2/Lib/idlelib/
H A DAutoComplete.py16 ID_CHARS = string.ascii_letters + string.digits + "_" variable
139 while i and curline[i-1] in ID_CHARS:
/external/python/cpython3/Lib/idlelib/
H A Dautocomplete.py21 ID_CHARS = string.ascii_letters + string.digits + "_" variable
142 while i and (curline[i-1] in ID_CHARS or ord(curline[i-1]) > 127):

Completed in 270 milliseconds