DekGenius.com
[ Team LiB ] Previous Section Next Section

3.8 Frozen Binary Executables

Frozen binary executables are packages that combine your program's byte code and the Python interpreter into a single executable program. With these, programs can be launched in the same ways that you would launch any other executable program (icon clicks, command lines, etc.). While this option works well for delivery of products, it is not really intended for use during program development. You normally freeze just before shipping, and after development is finished.

    [ Team LiB ] Previous Section Next Section