obf.py
author etisserant
Thu, 12 Jul 2007 11:27:43 +0200
changeset 36 e7d67b27877f
parent 5 f8652b073e84
child 58 39cd981ff242
permissions -rw-r--r--
Changes in the std library + std lib PLCOpen test (broken)
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)