Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

dep_util.py 935B

1234567891011121314151617181920212223
  1. from distutils.dep_util import newer_group
  2. # yes, this is was almost entirely copy-pasted from
  3. # 'newer_pairwise()', this is just another convenience
  4. # function.
  5. def newer_pairwise_group(sources_groups, targets):
  6. """Walk both arguments in parallel, testing if each source group is newer
  7. than its corresponding target. Returns a pair of lists (sources_groups,
  8. targets) where sources is newer than target, according to the semantics
  9. of 'newer_group()'.
  10. """
  11. if len(sources_groups) != len(targets):
  12. raise ValueError("'sources_group' and 'targets' must be the same length")
  13. # build a pair of lists (sources_groups, targets) where source is newer
  14. n_sources = []
  15. n_targets = []
  16. for i in range(len(sources_groups)):
  17. if newer_group(sources_groups[i], targets[i]):
  18. n_sources.append(sources_groups[i])
  19. n_targets.append(targets[i])
  20. return n_sources, n_targets