(fn)
| 45 | shutil.copyfileobj(inf, outf) |
| 46 | |
| 47 | def print_size(fn): |
| 48 | size = (os.stat(fn).st_size) / 1024000 |
| 49 | print('%dM\t%s' % (size, fn)) |
| 50 | |
| 51 | ignore_regex = re.compile(r'^.*\.(vcxproj|filters|nrm|icu|dat|xml|txt|ac|guess|m4|in|sub|py|mak)$') |
| 52 |
no test coverage detected
searching dependent graphs…