Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/test/
Dtest_configparser.py40 inline_comment_prefixes = (';', '#') variable in CfgParserTestCaseClass
53 inline_comment_prefixes=self.inline_comment_prefixes,
1046 inline_comment_prefixes = ('//', '"') variable in ConfigParserTestCaseNonStandardDelimiters
1136 inline_comment_prefixes = ('//', '"') variable in RawConfigParserTestCaseNonStandardDelimiters
1142 inline_comment_prefixes = ('//',) variable in RawConfigParserTestSambaConf
1434 inline_comment_prefixes = ';' variable in CompatibleTestCase
1850 cfg = configparser.ConfigParser(inline_comment_prefixes=(';', '#',
/external/python/cpython3/Doc/library/
Dconfigparser.rst537 * *inline_comment_prefixes*, default value: ``None``
541 (optionally indented) whereas *inline_comment_prefixes* can be used after
548 ``comment_prefixes=('#',';')`` and ``inline_comment_prefixes=(';',)``.
551 using *inline_comment_prefixes* may prevent users from specifying option
553 setting *inline_comment_prefixes*. In any circumstances, the only way of
874 …value=False, delimiters=('=', ':'), comment_prefixes=('#', ';'), inline_comment_prefixes=None, str…
884 Comments can be indented. When *inline_comment_prefixes* is given, it will
1204 inline_comment_prefixes=None, strict=True, \
/external/python/cpython3/Lib/
Dconfigparser.py603 comment_prefixes=('#', ';'), inline_comment_prefixes=None, argument
626 self._inline_comment_prefixes = tuple(inline_comment_prefixes or ())