Searched refs:comment_prefixes (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_configparser.py | 39 comment_prefixes = (';', '#') variable in CfgParserTestCaseClass 52 comment_prefixes=self.comment_prefixes, 322 """.format(self.delimiters, self.comment_prefixes) 655 "\n".format(self.delimiters, comment=self.comment_prefixes[0], 1045 comment_prefixes = ('//', '"') variable in ConfigParserTestCaseNonStandardDelimiters 1135 comment_prefixes = ('//', '"') variable in RawConfigParserTestCaseNonStandardDelimiters 1141 comment_prefixes = ('#', ';', '----') variable in RawConfigParserTestSambaConf 1337 comment_prefixes = {'#'} variable in ConfigParserTestCaseTrickyFile 1433 comment_prefixes = '#;' variable in CompatibleTestCase
|
D | cfgparser.3 | 6 # comment_prefixes = {'#'}
|
/external/python/cpython3/Doc/library/ |
D | configparser.rst | 535 * *comment_prefixes*, default value: ``('#', ';')`` 540 a config file. *comment_prefixes* are used only on otherwise empty lines 548 ``comment_prefixes=('#',';')`` and ``inline_comment_prefixes=(';',)``. 874 …=None, dict_type=dict, allow_no_value=False, delimiters=('=', ':'), comment_prefixes=('#', ';'), i… 882 divide keys from values. When *comment_prefixes* is given, it will be used 924 *allow_no_value*, *delimiters*, *comment_prefixes*, *strict*, 1203 comment_prefixes=('#', ';'), \
|
/external/python/cpython3/Lib/ |
D | configparser.py | 603 comment_prefixes=('#', ';'), inline_comment_prefixes=None, argument 625 self._comment_prefixes = tuple(comment_prefixes or ())
|