(name)
| 537 | seen = set() |
| 538 | |
| 539 | def was_seen(name): |
| 540 | if name in seen: |
| 541 | return True |
| 542 | seen.add(name) |
| 543 | return False |
| 544 | |
| 545 | # The files are sorted by the dstpath to make the order of files reproducible |
| 546 | # across file systems / operating systems (os.walk does not produce the same |