Staging
v0.5.1
https://github.com/python/cpython
Revision cd97da3b1d61be00bb06f3264a60418dbdb83bd8 authored by Tim Peters on 30 August 2004, 02:58:59 UTC, committed by Tim Peters on 30 August 2004, 02:58:59 UTC
Bugfix candidate -- although long_pow() is so different now I doubt a
patch would apply to 2.3.
1 parent 47e52ee
Raw File
Tip revision: cd97da3b1d61be00bb06f3264a60418dbdb83bd8 authored by Tim Peters on 30 August 2004, 02:58:59 UTC
long_pow(): Fix more instances of leaks in error cases.
Tip revision: cd97da3
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