HomeSort by relevance Sort by last modified time
    Searched refs:_optcre (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ConfigParser.py 230 self._optcre = self.OPTCRE_NV
232 self._optcre = self.OPTCRE
403 if (value is not None) or (self._optcre == self.OPTCRE):
507 mo = self._optcre.match(line)
733 if self._optcre is self.OPTCRE or value:
  /external/python/cpython2/Lib/
ConfigParser.py 238 self._optcre = self.OPTCRE_NV
240 self._optcre = self.OPTCRE
411 if (value is not None) or (self._optcre == self.OPTCRE):
515 mo = self._optcre.match(line)
741 if self._optcre is self.OPTCRE or value:
  /external/python/cpython3/Lib/
configparser.py 615 self._optcre = self.OPTCRE_NV if allow_no_value else self.OPTCRE
619 self._optcre = re.compile(self._OPT_NV_TMPL.format(delim=d),
622 self._optcre = re.compile(self._OPT_TMPL.format(delim=d),
    [all...]

Completed in 1940 milliseconds