[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Python?



Why do you need to do this?

.pyc files are Python modules compiled into bytecode which is executed by 
the Python virtual machine.  That compilation is automatic.  If the source 
.py module has not been compiled before or has changed, Python recompiles 
it when it is imported or executed.

In short, you shouldn't have to manually recompile.

At 04:39 PM 5/3/01 -0400, you wrote:
>One of the things I need to do is modify a python install program.
>Can someone save me some time and tell me the command to (compile?)ich
>turn a "*.py" source file into a "*.pyc" binary file???