Searched refs:list1 (Results 1 – 1 of 1) sorted by relevance
918 def equal_paths(list1, list2): argument919 assert len(list1) == len(list2)920 return all(elt1.path == elt2.path for elt1, elt2 in zip(list1, list2))
Completed in 16 milliseconds