Lines Matching refs:line
190 'this line is much, much longer than my editor\nlikes it.')
270 'this line is much, much longer than my editor\nlikes it.')
309 foo{0[1]} this line is much, much longer than my editor
380 "foo": "this line is much, much longer than my editor\nlikes "
469 "[MySection]\nOption{} first line \n\tsecond line \n".format(
472 eq(cf.get("MySection", "Option"), "first line\nsecond line")
510 "[MySection]\nOption{} first line \n\tsecond line \n".format(
513 eq(cf["MySection"]["Option"], "first line\nsecond line")
640 "[line 5]: section 'Foo' already exists")
653 "foo{0[0]} this line is much, much longer than my editor\n"
657 " long line\n"
682 "\tlong line\n"
685 "foo{equals}this line is much, much longer than my editor\n"
1505 line = f.readline()
1506 while line:
1507 yield line
1508 line = f.readline()
1556 "While reading from b'badbad' [line 2]: section 'badbad' "
1568 "While reading from b'badbad' [line 3]: option 'bad' in section "
1579 "Source contains parsing errors: b'badbad'\n\t[line 2]: '= bad'"
1589 "File contains no section headers.\nfile: b'badbad', line: 1\n"
1859 e1 = configparser.MissingSectionHeaderError('filename', 123, 'line')
1865 self.assertEqual(e1.line, e2.line)