Lines Matching refs:line
303 for line in source.splitlines():304 if type(line) != bytes:305 line = line.encode('utf-8')306 if line.startswith(b' ') or line.startswith(b'\t'):307 ofi.write(line.strip() + b'\n')311 if type(line) == bytes:312 line = line.decode('utf-8')313 ofi = open_file(os.path.join(test_dir, line.strip()))