Staging
v0.5.1
https://github.com/python/cpython
Revision 99b5afab74428e5ddfd877bdf3aa8a8c479696b1 authored by Benjamin Peterson on 14 April 2014, 02:10:38 UTC, committed by Benjamin Peterson on 14 April 2014, 02:10:38 UTC
1 parent 80e6af1
Raw File
Tip revision: 99b5afab74428e5ddfd877bdf3aa8a8c479696b1 authored by Benjamin Peterson on 14 April 2014, 02:10:38 UTC
in scan_once, prevent the reading of arbitrary memory when passed a negative index
Tip revision: 99b5afa
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