obf.py
author etisserant
Wed, 06 Jun 2007 17:54:33 +0200
changeset 15 fc897b7bfa7b
parent 5 f8652b073e84
child 58 39cd981ff242
permissions -rw-r--r--
Enhanced standard function decalration fr cvs
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)