Home | History | Annotate | Download | only in python2.7

Lines Matching refs:_percent_re

182 _percent_re = re.compile(r'%(?:\((?P<key>.*?)\))?'
192 match = _percent_re.match(percent)
226 percents = list(_percent_re.finditer(f))
227 new_f = _percent_re.sub('%s', f)