Lines Matching refs:line
32 for line in opcode_fp:
33 match = opcode_re.match(line)
68 for line_number, line in enumerate(lines, 1):
70 line = line.rstrip()
71 if line.startswith("%"):
72 script.write("{:80} # {}\n".format(line.lstrip("%"), file_line))
73 indent = indent_re.match(line).group(1)
74 if line.endswith(":"):
77 line = escape_re.sub(r"''' + \g<name> + '''", line)
78 line = line.replace("\\", "\\\\")
79 line = line.replace("$$", "$")
80 script.write(indent + "write_line('''" + line + "''')\n")