Lines Matching refs:file
37 with open(structure_filename, 'r') as file:
38 nodes2 = eval(file.read())
40 with open(data_filename, 'rb') as file:
41 loader = yaml.Loader(file)
78 with open(data_filename, 'rb') as file:
79 events1 = list(yaml.parse(file))
80 with open(canonical_filename, 'rb') as file:
81 events2 = list(yaml.canonical_parse(file))
96 with open(canonical_filename, 'rb') as file:
97 events1 = list(yaml.parse(file))
98 with open(canonical_filename, 'rb') as file:
99 events2 = list(yaml.canonical_parse(file))
128 with open(data_filename, 'rb') as file:
129 nodes1 = list(yaml.compose_all(file))
130 with open(canonical_filename, 'rb') as file:
131 nodes2 = list(yaml.canonical_compose_all(file))
182 with open(data_filename, 'rb') as file:
183 native1 = list(yaml.load_all(file, Loader=MyLoader))
184 with open(canonical_filename, 'rb') as file:
185 native2 = list(yaml.load_all(file, Loader=MyCanonicalLoader))