obf.py
author lbessard
Tue, 19 Jun 2007 08:43:41 +0200
changeset 21 e619d7bea692
parent 5 f8652b073e84
child 58 39cd981ff242
permissions -rw-r--r--
Add support for AND, OR, XOR for booleans
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)