예제 #1
0
파일: Build.py 프로젝트: GelvinBelson/gooz
 def _ChecksumAll(paths):
     for path in paths:
         if not os.path.exists(path):
             yield path, None
         else:
             yield (path, misc.ChecksumFile(path))