Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/distutils/
Dutil.py223 _wordchars_re = _squote_re = _dquote_re = None variable
225 global _wordchars_re, _squote_re, _dquote_re
226 _wordchars_re = re.compile(r'[^\\\'\"%s ]*' % string.whitespace)
244 if _wordchars_re is None: _init_regex()
251 m = _wordchars_re.match(s, pos)
/external/python/cpython3/Lib/distutils/
Dutil.py207 _wordchars_re = _squote_re = _dquote_re = None variable
209 global _wordchars_re, _squote_re, _dquote_re
210 _wordchars_re = re.compile(r'[^\\\'\"%s ]*' % string.whitespace)
228 if _wordchars_re is None: _init_regex()
235 m = _wordchars_re.match(s, pos)