Remove .pyo files too.

This commit is contained in:
Jack Jansen 2002-09-06 20:23:09 +00:00
parent a6db44f169
commit 3337ea731b
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#!/usr/local/bin/python
"""Recursively zap all .pyc files"""
"""Recursively zap all .pyc and .pyo files"""
import os
import sys
@ -27,7 +27,7 @@ def zappyc(dir):
def walker(dummy, top, names):
for name in names:
if name[-4:] == '.pyc':
if name[-4:] in ('.pyc', '.pyo'):
path = os.path.join(top, name)
print 'Zapping', path
if doit: