obf.py
author lbessard
Wed, 18 Apr 2007 16:39:28 +0200
changeset 13 69075340d6a9
parent 5 f8652b073e84
child 58 39cd981ff242
permissions -rw-r--r--
Adding support for forbidding insertion of function block into function
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)