Home
last modified time | relevance | path

Searched refs:ID_CHARS (Results 1 – 2 of 2) sorted by relevance

/external/markdown/markdown/extensions/
Dheaderid.py73 ID_CHARS = ascii_lowercase + digits + '-_' variable
159 if c in ID_CHARS:
/external/python/cpython2/Lib/idlelib/
DAutoComplete.py16 ID_CHARS = string.ascii_letters + string.digits + "_" variable
139 while i and curline[i-1] in ID_CHARS: