Lines Matching refs:comment_str
169 def csv_comment_str(self, comment_str): argument
170 self._csv_comment_str = comment_str
387 comment_str: str = ''
389 comment_str = '//'
391 comment_str = '#'
393 comment_str = 'C_'
395 comment_str = '! '
399 return [parse_test_line(line.strip(comment_str).removeprefix("TESTARGS"), source_file.stem)
405 …comment_str: str = '#', comment_func: Optional[Callable[[str, str], Optional[str]]] = None) -> str:
432 if test_line[0] == comment_str and true_line[0] == comment_str:
437 elif test_line[0] == comment_str and true_line[0] != comment_str:
439 elif test_line[0] != comment_str and true_line[0] == comment_str: