View Single Post
Old May 27th, 2006, 7:32 PM   #3
Game_Ender
Professional Programmer
 
Game_Ender's Avatar
 
Join Date: May 2006
Location: Maryland, USA
Posts: 306
Rep Power: 3 Game_Ender is on a distinguished road
Whenever you run your script from the command line using "python myfile.py" it automatically generates a myfile.pyc. That file is still pretty "open", you can inspect it for all variables, classes, constants, basically symbol information but you can't read the source directly. py2exe, py2app, and freeze will turn you python program into an executable, that is probably the hardest form of python program to read.
Game_Ender is offline   Reply With Quote