Staging
v0.5.0
https://github.com/python/cpython
Raw File
Tip revision: 1917d9b7c266d8be9ef1b403e38411ba871a0a37 authored by Larry Hastings on 17 March 2019, 23:47:59 UTC
Version bump for 3.5.7 final.
Tip revision: 1917d9b
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