cpython/PCbuild/rmpyc.py

20 lines
409 B
Python
Raw Normal View History

# Remove all the .pyc files under ../Lib.
2003-04-26 00:53:24 +00:00
def deltree(root):
import os
2003-04-26 00:53:24 +00:00
from os.path import join
npyc = 0
2003-04-26 00:53:24 +00:00
for root, dirs, files in os.walk(root):
for name in files:
# to be thorough
if name.endswith(('.pyc', '.pyo')):
npyc += 1
2003-04-26 00:53:24 +00:00
os.remove(join(root, name))
return npyc
npyc = deltree("../Lib")
print(npyc, ".pyc deleted")