obf.py
author lbessard
Fri, 20 Jul 2007 18:28:03 +0200
changeset 47 2b2f8d88e6d3
parent 5 f8652b073e84
child 58 39cd981ff242
permissions -rw-r--r--
Interface changed to show pou interface at the bottom of the window
Adding Drag&Drop between ProjectTree and VariableGrid for adding block and variables into graphical Viewer
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)