Hey, in an earlier question I asked why gui2exe wasn't working.
Since then I've tried a couple of things but haven't found out much. Only that the problem has something to do with the sets module which py2exe is accessing.
I tried,
and got,
Then I tried,
and got,
But when I looked at the code for the sets module, I couldn't figure out what was wrong. (what does python mean by deprecated, by the way?)
If anyone knows why this is happening, I really appreciate it.
Joshua
Since then I've tried a couple of things but haven't found out much. Only that the problem has something to do with the sets module which py2exe is accessing.
I tried,
Code:
import py2exe
Code:
Warning (from warnings module): File "C:\Program Files\Python25\lib\site-packages\py2exe\build_exe.py", line 16 import sets DeprecationWarning: the sets module is deprecated
Code:
import sets
Code:
Warning (from warnings module): File "__main__", line 1 DeprecationWarning: the sets module is deprecated
If anyone knows why this is happening, I really appreciate it.
Joshua
Comment