2017-03-11 01:02:52 -04:00
|
|
|
# Remove all the .pyc files under ../Lib.
|
2001-02-10 20:46:39 -04:00
|
|
|
|
2003-04-25 21:53:24 -03:00
|
|
|
|
2001-02-10 20:46:39 -04:00
|
|
|
def deltree(root):
|
|
|
|
import os
|
2003-04-25 21:53:24 -03:00
|
|
|
from os.path import join
|
|
|
|
|
2017-03-11 01:02:52 -04:00
|
|
|
npyc = 0
|
2003-04-25 21:53:24 -03:00
|
|
|
for root, dirs, files in os.walk(root):
|
|
|
|
for name in files:
|
2017-03-11 01:02:52 -04:00
|
|
|
# to be thorough
|
|
|
|
if name.endswith(('.pyc', '.pyo')):
|
2001-02-10 20:46:39 -04:00
|
|
|
npyc += 1
|
2003-04-25 21:53:24 -03:00
|
|
|
os.remove(join(root, name))
|
|
|
|
|
2017-03-11 01:02:52 -04:00
|
|
|
return npyc
|
2001-02-10 20:46:39 -04:00
|
|
|
|
2017-03-11 01:02:52 -04:00
|
|
|
npyc = deltree("../Lib")
|
|
|
|
print(npyc, ".pyc deleted")
|