HomeSort by relevance Sort by last modified time
    Searched full:comment_prefixes (Results 1 - 4 of 4) sorted by null

  /external/python/cpython3/Lib/test/
cfgparser.3 6 # comment_prefixes = {'#'}
test_configparser.py 39 comment_prefixes = (';', '#') variable in class:CfgParserTestCaseClass
52 comment_prefixes=self.comment_prefixes,
322 """.format(self.delimiters, self.comment_prefixes)
655 "\n".format(self.delimiters, comment=self.comment_prefixes[0],
1014 comment_prefixes = ('\/\/', '"') variable in class:ConfigParserTestCaseNonStandardDelimiters
1096 comment_prefixes = ('\/\/', '"') variable in class:RawConfigParserTestCaseNonStandardDelimiters
1102 comment_prefixes = ('#', ';', '----') variable in class:RawConfigParserTestSambaConf
1298 comment_prefixes = {'#'} variable in class:ConfigParserTestCaseTrickyFile
1394 comment_prefixes = '#;' variable in class:CompatibleTestCase
    [all...]
  /external/python/cpython3/Doc/library/
configparser.rst 554 * *comment_prefixes*, default value: ``('#', ';')``
559 a config file. *comment_prefixes* are used only on otherwise empty lines
567 ``comment_prefixes=('#',';')`` and ``inline_comment_prefixes=(';',)``.
885 .. class:: ConfigParser(defaults=None, dict_type=collections.OrderedDict, allow_no_value=False, delimiters=('=', ':'), comment_prefixes=('#', ';'), inline_comment_prefixes=None, strict=True, empty_lines_in_values=True, default_section=configparser.DEFAULTSECT, interpolation=BasicInterpolation(), converters={})
893 divide keys from values. When *comment_prefixes* is given, it will be used
    [all...]
  /external/python/cpython3/Lib/
configparser.py 18 delimiters=('=', ':'), comment_prefixes=('#', ';'),
33 When `comment_prefixes' is given, it will be used as the set of
602 comment_prefixes=('#', ';'), inline_comment_prefixes=None,
627 self._comment_prefixes = tuple(comment_prefixes or ())
    [all...]

Completed in 695 milliseconds