Lines Matching refs:line
51 """Extracts command line arguments from first comment line in a file."""
53 line = f.readline()
54 if line[0] == '/' and line [1] == '/':
55 return line[2:].strip()
82 # Extra command line arguments can be placed as // comments at the start of
114 for line in stdout_file:
115 print 'STDOUT>', line,
116 for line in stderr_file:
117 print 'STDERR>', line,