29a30,31 > ('pyc', 'f', > "remove any .pyc files left around in the directory tree"), 41a44 > self.pyc = None 72a76,81 > if self.pyc: > # remove all the .pyc files > # TODO: rewrite this in pure python if there is a need > if self.dry_run: os.system('find -name "*.pyc"') > else: os.system('find -name "*.pyc" -delete') >