29a30,31 > ('pyc', 'f', > "remove any .pyc files left around in the directory tree"), 41a44 > self.pyc = None 72a76,83 > if self.pyc: > # remove all the .pyc files > for root, dirs, files in os.walk(os.getcwd(), topdown=False): > for name in files: > if name.endswith('.pyc') and os.path.isfile(os.path.join(root, name)): > print 'removing: %s' % os.path.join(root, name) > if not(self.dry_run): os.remove(os.path.join(root, name)) >