Home | History | Annotate | Download | only in distutils

Lines Matching refs:sources

33 def newer_pairwise(sources, targets):
35 than its corresponding target. Return a pair of lists (sources,
39 if len(sources) != len(targets):
40 raise ValueError, "'sources' and 'targets' must be same length"
42 # build a pair of lists (sources, targets) where source is newer
45 for source, target in zip(sources, targets):
52 def newer_group(sources, target, missing='error'):
54 listed in 'sources'.
57 than every file in 'sources', return false; otherwise return true.
77 for source in sources: