Staging
v0.8.1
https://github.com/python/cpython
Revision b142c63fd9c890c0d0e7b239b8a461ad762b1415 authored by Georg Brandl on 30 July 2006, 16:20:10 UTC, committed by Georg Brandl on 30 July 2006, 16:20:10 UTC
1 parent 0907f4d
Raw File
Tip revision: b142c63fd9c890c0d0e7b239b8a461ad762b1415 authored by Georg Brandl on 30 July 2006, 16:20:10 UTC
Fix makefile changes for python-config.
Tip revision: b142c63
rmpyc.py
# Remove all the .pyc and .pyo files under ../Lib.


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

    npyc = npyo = 0
    for root, dirs, files in os.walk(root):
        for name in files:
            delete = False
            if name.endswith('.pyc'):
                delete = True
                npyc += 1
            elif name.endswith('.pyo'):
                delete = True
                npyo += 1

            if delete:
                os.remove(join(root, name))

    return npyc, npyo

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