obf.py
author etisserant
Fri, 13 Jul 2007 19:21:17 +0200
changeset 39 5b04b4670697
parent 5 f8652b073e84
child 58 39cd981ff242
permissions -rw-r--r--
First working IEC std lib test, actually test from string and to_string functions.
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)