Staging
v0.5.1
https://github.com/python/cpython
Revision 3c2d6d9fa0bb8133031f3557f4236e68a81e7d57 authored by Raymond Hettinger on 30 August 2003, 23:24:37 UTC, committed by Raymond Hettinger on 30 August 2003, 23:24:37 UTC
(Revised from the original patch contributed by Michal Pasternak.)

Also, make a couple minor fixups elsewhere.
1 parent 9ea45c8
Raw File
Tip revision: 3c2d6d9fa0bb8133031f3557f4236e68a81e7d57 authored by Raymond Hettinger on 30 August 2003, 23:24:37 UTC
SF patch #797868: Tutorial, sec. 5.1.4 could contain an extra example
Tip revision: 3c2d6d9
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