Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/
DConfigParser.py441 SECTCRE = re.compile( variable in RawConfigParser
497 mo = self.SECTCRE.match(line)
/external/python/cpython3/Lib/
Dconfigparser.py589 SECTCRE = re.compile(_SECT_TMPL, re.VERBOSE) variable in RawConfigParser
1062 mo = self.SECTCRE.match(value)
/external/python/cpython3/Doc/library/
Dconfigparser.rst736 .. attribute:: ConfigParser.SECTCRE
759 >>> custom.SECTCRE = re.compile(r"\[ *(?P<header>[^]]+?) *\]")