Re: SWIG again

2005-08-07 Thread Robert Kern
Jerry He wrote: > > Can you tell me how to completely remove that > >>module? >> >>For cygwin, it should be in whatever corresponds to >>/usr/lib/python2.4/site-packages . >> >>-- >>Robert Kern >>[EMAIL PROTECTED] >> > > Hi, > Do you mean to say that all I have to do is delete > "example.py"

Re: SWIG again

2005-08-07 Thread Jerry He
> Can you tell me how to completely remove that > module? > > For cygwin, it should be in whatever corresponds to > /usr/lib/python2.4/site-packages . > > -- > Robert Kern > [EMAIL PROTECTED] > Hi, Do you mean to say that all I have to do is delete "example.py" and the "build" folder? (not

Re: SWIG again

2005-08-06 Thread Robert Kern
Jerry He wrote: >>Robert Kern >>Please don't make a new thread every time you post. > > sorry, I chose the digest mode when I signed up, and I > have no idea how to reply, nor any idea how to change > to the normal mode where I get individual emails so I > can actually just hit the reply button in

Re: SWIG again

2005-08-06 Thread Robert Kern
Please don't make a new thread every time you post. Jerry He wrote: > Robert Kern > >>Write a distutils setup.py script to do all of the >>compiling and linking. > > Ok, I wrote the following distutils setup.py script > from distutils.core import setup, Extension > > setup (name = 'example', >

SWIG again

2005-08-06 Thread Jerry He
Robert Kern >Write a distutils setup.py script to do all of the >compiling and linking. Ok, I wrote the following distutils setup.py script from distutils.core import setup, Extension setup (name = 'example', version = '2.4', ext_modules = [Extension('example', \ ['example.c',