Home
last modified time | relevance | path

Searched refs:ispythonprog (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Tools/scripts/
Dpathfix.py62 ispythonprog = re.compile('^[a-zA-Z0-9_]+\.py$') variable
64 return ispythonprog.match(name) >= 0
Dmethfix.py53 ispythonprog = re.compile('^[a-zA-Z0-9_]+\.py$') variable
55 return ispythonprog.match(name) >= 0
Dclassfix.py56 ispythonprog = re.compile('^[a-zA-Z0-9_]+\.py$') variable
58 return ispythonprog.match(name) >= 0
/external/python/cpython2/Demo/scripts/
Deqfix.py56 ispythonprog = re.compile('^[a-zA-Z0-9_]+\.py$') variable
58 return ispythonprog.match(name) >= 0
/external/python/cpython3/Tools/scripts/
Dpathfix.py73 ispythonprog = re.compile(r'^[a-zA-Z0-9_]+\.py$') variable
75 return bool(ispythonprog.match(name))