obf.py
author lbessard
Tue, 10 Apr 2007 18:02:40 +0200
changeset 7 f1691e685c49
parent 5 f8652b073e84
child 58 39cd981ff242
permissions -rw-r--r--
Adding error messages on LD editor
Adding Drag and Drop on ST and IL Editors
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)