the problem about the DLL file generate by py2exe

2008-06-25 Thread em00100
Dear All, I have try to use the py2exe to compile the DLL file first i write the simple python script "test01.py": def test001(): return 1 then write the setup.py: # setup.py from distutils.core import setup import py2exe import sys if len(sys.argv) == 1: sys.argv.append("py2exe") s

Re: the problem about the DLL file generate by py2exe

2008-06-27 Thread em00100
On Jun 26, 7:52 pm, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > Dear All, > > > I have try to use the py2exe to compile the DLL file > > > first i write the simple python script "test01.py": > > def test001(): > >     return 1 > > > then write the setup.py: > > # se