Re: swig & Python question

2004-12-11 Thread It's me
Whether SWIG will work in a "no brainer" way or not depends on the original code, I think. If the original code uses a very convoluted design, of course things will get hairy. If the package uses a very clean structure, I think you will find SWIG works out very nicely. The intriguing things is,

Re: swig & Python question

2004-12-11 Thread Keith Dart
It's me wrote: "It's me" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I am playing around with SWING building a Python module using the no brainer example in http://www.swig.org/tutorial.html. With that first example, Oops! Soapy fingers. "SWIG" - not "SWING". -- It's me. I hav

Re: swig & Python question

2004-12-08 Thread It's me
"It's me" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am playing around with SWING building a Python module using the no brainer > example in http://www.swig.org/tutorial.html. With that first example, > Oops! Soapy fingers. "SWIG" - not "SWING". -- It's me. -- http:/

swig & Python question

2004-12-08 Thread It's me
I am playing around with SWING building a Python module using the no brainer example in http://www.swig.org/tutorial.html. With that first example, /* File : example.c */ #include double My_variable = 3.0; int fact(int n) { if (n <= 1) return 1; else return n*fact(n-1); } int