https://github.com/python/cpython
Raw File
Tip revision: e6c0efa25a47488f400093fc556c03e83567aed8 authored by Thomas Wouters on 06 June 2023, 14:12:06 UTC
Python 3.12.0b2
Tip revision: e6c0efa
rmpyc.py
# Remove all the .pyc files under ../Lib.


def deltree(root):
    import os
    from os.path import join

    npyc = 0
    for root, dirs, files in os.walk(root):
        for name in files:
            # to be thorough
            if name.endswith(('.pyc', '.pyo')):
                npyc += 1
                os.remove(join(root, name))

    return npyc

npyc = deltree("../Lib")
print(npyc, ".pyc deleted")
back to top