> Can you tell me which modules provide to > decode and execute a .pyc file ? The bytecode loader in in marshal.c; the byte code interpreter is in ceval.c. Also consider frameobject.c and codeobject.c. HTH, Martin