Home
last modified time | relevance | path

Searched refs:first_line_re (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/distutils/command/
Dbuild_scripts.py15 first_line_re = re.compile('^#!.*python[0-9.]*([ \t].*)?$') variable
87 match = first_line_re.match(first_line)
/external/python/cpython3/Lib/distutils/command/
Dbuild_scripts.py15 first_line_re = re.compile(b'^#!.*python[0-9.]*([ \t].*)?$') variable
89 match = first_line_re.match(first_line)
/external/python/setuptools/setuptools/command/
Deasy_install.py23 from distutils.command.build_scripts import first_line_re
1712 if isinstance(first_line_re.pattern, str):
1713 return first_line_re
1716 return re.compile(first_line_re.pattern.decode())