Staging
v0.5.1
https://github.com/python/cpython
Revision 05a4dd83af7c9b7feae88abc6b8be21924e8a4a0 authored by Nadeem Vawda on 26 February 2012, 22:42:58 UTC, committed by Nadeem Vawda on 26 February 2012, 22:42:58 UTC
1 parent 3bbdc8e
Raw File
Tip revision: 05a4dd83af7c9b7feae88abc6b8be21924e8a4a0 authored by Nadeem Vawda on 26 February 2012, 22:42:58 UTC
Issue #13873: Fix crash in test_zlib when running on a small (<4GB) tmpfs.
Tip revision: 05a4dd8
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