obf.py
author lbessard
Thu, 12 Jul 2007 11:29:11 +0200
changeset 37 256eedd275d0
parent 5 f8652b073e84
child 58 39cd981ff242
permissions -rw-r--r--
Adding support for disable interface variable change if a POU is used
Bug on String code generation fixed
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)