Staging
v0.5.1
https://github.com/python/cpython
Revision d24c8287e226ac9983caf6bb826a7b53142ee31f authored by Yury Selivanov on 11 June 2017, 14:11:47 UTC, committed by GitHub on 11 June 2017, 14:11:47 UTC
1 parent ea8b348
Raw File
Tip revision: d24c8287e226ac9983caf6bb826a7b53142ee31f authored by Yury Selivanov on 11 June 2017, 14:11:47 UTC
bpo-30508: Don't log exceptions if Task/Future "cancel()" method was called. (#2110)
Tip revision: d24c828
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