Staging
v0.8.1
https://github.com/python/cpython
Revision f32a5f4acc0bcdde3cd5cbc04e1ff03d5ec00b05 authored by Gregory P. Smith on 13 August 2009, 18:16:54 UTC, committed by Gregory P. Smith on 13 August 2009, 18:16:54 UTC
1 parent 41e9d28
Raw File
Tip revision: f32a5f4acc0bcdde3cd5cbc04e1ff03d5ec00b05 authored by Gregory P. Smith on 13 August 2009, 18:16:54 UTC
unblock merge of 73917, it is needed to fix issue 3392
Tip revision: f32a5f4
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