[Pythonmac-SIG] py2app ImportError

2007-02-06 Thread Erwin Marsi
My py2app-build application crashes with an ImportError. I'm using the standard python 2.5 framework from http://www.python.org/ download/ and py2app 0.3.5 build from sources. I followed the py2app tutorial and tried in alias mode first. Here's my setup.py: -- """ This is a setup.py script

Re: [Pythonmac-SIG] py2app ImportError

2007-02-06 Thread Erwin Marsi
On Feb 6, 2007, at 10:23, Ronald Oussoren wrote: > > How does ielemtree import ElementTree? Does it use an import > statement or does it call __import__ directly? py2app can only > detect imports that are done using the import statement. > > > Ronald It uses a normal import statement: from

Re: [Pythonmac-SIG] py2app ImportError

2007-02-06 Thread Erwin Marsi
On Feb 6, 2007, at 20:39, Ronald Oussoren wrote: > > On 6 Feb, 2007, at 10:35, Erwin Marsi wrote: > >> >> On Feb 6, 2007, at 10:23, Ronald Oussoren wrote: >> >>> >>> How does ielemtree import ElementTree? Does it use an import >>> statemen