Re: Re: How do I call super() in c extention ?

2012-01-27 Thread YASUDA Hideyuki
> Have you considered using Cython for this? No. I hadn't known Cython. Now, I'll try to use Cython. thanks. umedoblock (-28163年01月-9日 04:59), Stefan Behnel wrote: umedoblock, 27.01.2012 03:03: I'd like to call super() in c extension. I'd like to rewrite class Baa as c extension. Have you

Re: How do I call super() in c extention ?

2012-01-26 Thread Stefan Behnel
umedoblock, 27.01.2012 03:03: > I'd like to call super() in c extension. > I'd like to rewrite class Baa as c extension. Have you considered using Cython for this? It will allow you to do exactly that with only minor changes to your Python code (if any). And it's quite likely that the C code that