obf.py
author lbessard
Wed, 11 Apr 2007 17:26:07 +0200
changeset 8 7ceec5c40d77
parent 5 f8652b073e84
child 58 39cd981ff242
permissions -rw-r--r--
Adding auto-completion into ST and IL Editors
Adding support for multiple coil on a rung into LD Editor
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)