Compiling errors using Py2exe and wxPython

C. D. Bos wrote:

I've tried to compile a Pythonprogramm into an .exe using
Py2exe.
The program uses wxPython for graphics.
Now Py2exe reports missing modules after compiling, that are all related to wxPython wich some of them are:
clip_dndc
cmndlgsc
controls2c
controlc
eventsc
filesysc
...
All imported via wx.py
I did a search but weren't able to find anyone of them.
Where can I find these so I know wich module to hook up with Py2exe.
I hope someone will answer my question.

Don't worry about them. The warning is because py2exe could not find a file on the filesystem for those modules and that is becuase there are not any. They are statically linked with the wxc.pyd module and are automatically imported when it is.

ยทยทยท

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!