>>I'm afraid that the only *proven* way to protect code from
>>reverse-engineering is to not distribute it *at all*.
ain't that the truth.
A hex editor would stop the "PyRun_SimpleString(secret_code)"
Even if you encrypt your string they have to run at some point. A
couple clicks in decent disa
Thanks. I would have wasted a good day trying to figure that out. I found
a work around. I'll just run the output in a terminal.
--
http://mail.python.org/mailman/listinfo/python-list
I forgot to add that i'm running ubuntu with python 2.4, and the imports
are:
import os
import pygtk
pygtk.require('2.0')
import gtk
import gtk.glade
--
http://mail.python.org/mailman/listinfo/python-list
I have been working on a little frontend for newspost. It runs
newspost just fine and gets it's output. The problem is that i want it to
get the stdout as the program runs, not hold it all till it's
finished. I've tried a few variations of popen , and others with no luck.
Here is the subroutine th