Size: 558
Comment: An @#! idiot had added some stupid spam on the page, I cleaned the mess
|
Size: 558
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 16: | Line 16: |
To get optimised bytecode, you need to call the ''setup.py'' like so: | To get optimized bytecode, you need to call the ''setup.py'' like so: |
Problem
If you specify the optimize option in your setup.py, this will only be used for the compiling of the needed modules, not for your main module!BRFor example if you have the following setup.py:
The bytecode embedded in the resulting .exe will not be optimised.
Solution
To get optimized bytecode, you need to call the setup.py like so:
python -OO setup.py py2exe