Home
last modified time | relevance | path

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

/third_party/python/Lib/distutils/
Dutil.py221 _wordchars_re = _squote_re = _dquote_re = None variable
223 global _wordchars_re, _squote_re, _dquote_re
224 _wordchars_re = re.compile(r'[^\\\'\"%s ]*' % string.whitespace)
242 if _wordchars_re is None: _init_regex()
249 m = _wordchars_re.match(s, pos)