Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 933b974a41d388d2fca359f910cc958ca3e7c539 authored by Georg Brandl on 29 July 2010, 14:36:11 UTC
Use correct directive and name.
Tip revision: 933b974
rmpyc.py
# Remove all the .pyc files under ../Lib.


def deltree(root):
    import os
    from os.path import join

    npyc = 0
    for root, dirs, files in os.walk(root):
        for name in files:
            # to be thorough
            if name.endswith(('.pyc', '.pyo')):
                npyc += 1
                os.remove(join(root, name))

    return npyc

npyc = deltree("../Lib")
print(npyc, ".pyc deleted")
back to top