Staging
v0.8.1
Revision b1cb56ad171eb9f2660cca7cc8fd9ae25564b73b authored by Ka-Ping Yee on 16 August 2006, 07:02:50 UTC, committed by Ka-Ping Yee on 16 August 2006, 07:02:50 UTC
little-endian byte order on Windows), and to work around clocks
with low resolution yielding duplicate UUIDs.

Anthony Baxter has approved this change.
1 parent d112bc7
Raw File
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