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
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