obf.py
author lbessard
Mon, 11 Jun 2007 14:56:25 +0200
changeset 16 20dcc0dce64b
parent 5 f8652b073e84
child 58 39cd981ff242
permissions -rw-r--r--
Bug on block properties dialog corrected
from py_compile import compile
from commands import getoutput
from os import remove,getcwd,rename

for filename in getoutput("find . -name '*.py'").splitlines():
        print "Compilation de :", filename
        compile(filename)