Staging
v0.8.1
https://github.com/python/cpython
Revision 9cc9026294bfd2b65e5a66a455f4982e8b3dbce7 authored by Terry Jan Reedy on 29 April 2014, 05:19:17 UTC, committed by Terry Jan Reedy on 29 April 2014, 05:19:17 UTC
1 parent 7c895ed
Raw File
Tip revision: 9cc9026294bfd2b65e5a66a455f4982e8b3dbce7 authored by Terry Jan Reedy on 29 April 2014, 05:19:17 UTC
Issue #21055: Index (augmented) assignment symbols.
Tip revision: 9cc9026
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