Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
Dtextwrap.py104 wordsep_simple_re = re.compile(r'(\s+)') variable in TextWrapper
140 self.wordsep_simple_re.pattern, re.U)
187 pat = self.wordsep_simple_re
/external/python/cpython3/Lib/
Dtextwrap.py105 wordsep_simple_re = re.compile(r'(%s+)' % whitespace) variable in TextWrapper
178 chunks = self.wordsep_simple_re.split(text)