eliben wrote:
And while we're on the topic of what compilation means in Python,
It depends on the implementation. I'm
not sure I fully understand the difference between compiled (.pyc) code and exec-ed code. Is the exec-ed code turned to bytecode too, i.e. it will be as efficient as compile-d code ?
CPython always compiles to bytecode before executing. There is no alternative execution path.
-- http://mail.python.org/mailman/listinfo/python-list