Lines Matching refs:file
9 with open(detect_filename, 'r') as file:
10 correct_tag = file.read().strip()
11 with open(data_filename, 'rb') as file:
12 node = yaml.compose(file)
63 with open(data_filename, 'rb') as file:
64 nodes1 = list(yaml.compose_all(file.read(), Loader=MyLoader))
65 with open(path_filename, 'rb') as file:
66 nodes2 = list(yaml.compose_all(file.read()))
81 with open(filename, 'rb') as file:
82 output = yaml.serialize_all(yaml.compose_all(file), Dumper=MyDumper)
86 with open(data_filename, 'rb') as file:
87 nodes2 = yaml.compose_all(file)