Re: [Cython] PEP 3135 -- New Super

2011-07-05 Thread Stefan Behnel
Vitja Makarov, 05.07.2011 08:21: I was thinking about implementing new super() with no arguments. Please do :) If you start working on it, please assign the ticket to you: http://trac.cython.org/cython_trac/ticket/696 The problem is where to store __class__, I see two options here: 1. Add

Re: [Cython] PEP 3135 -- New Super

2011-07-05 Thread Vitja Makarov
2011/7/5 Stefan Behnel : > Vitja Makarov, 05.07.2011 08:21: >> >> I was thinking about implementing new super() with no arguments. > > Please do :) > > If you start working on it, please assign the ticket to you: > > http://trac.cython.org/cython_trac/ticket/696 > Ok, I'll do this if I start. > >

Re: [Cython] PEP 3135 -- New Super

2011-07-05 Thread Stefan Behnel
Vitja Makarov, 05.07.2011 09:17: 2011/7/5 Stefan Behnel: Vitja Makarov, 05.07.2011 08:21: I was thinking about implementing new super() with no arguments. http://trac.cython.org/cython_trac/ticket/696 The problem is where to store __class__, I see two options here: 1. Add func_class member

Re: [Cython] PEP 3135 -- New Super

2011-07-05 Thread Vitja Makarov
2011/7/5 Stefan Behnel : > Vitja Makarov, 05.07.2011 09:17: >> >> 2011/7/5 Stefan Behnel: >>> >>> Vitja Makarov, 05.07.2011 08:21: I was thinking about implementing new super() with no arguments. >>> >>> http://trac.cython.org/cython_trac/ticket/696 >>> The problem is where to store

Re: [Cython] PEP 3135 -- New Super

2011-07-05 Thread Stefan Behnel
Vitja Makarov, 05.07.2011 10:37: 2011/7/5 Stefan Behnel: IMO, the main reason for the heuristic is to prevent class objects from being kept alive by their methods, except for the single case where super() is used. Keeping a class alive just because one of its methods is still used somewhere can

Re: [Cython] Hudson is down?

2011-07-05 Thread Robert Bradshaw
On Mon, Jul 4, 2011 at 9:12 PM, Stefan Behnel wrote: > Vitja Makarov, 04.07.2011 20:43: >> >> It seems that hudson server is down. > > It's back now. Looks like the sage.math machine was restarted. Yep, sage.math was restarted. Thanks for getting this back up and running. - Robert __

Re: [Cython] PEP 3135 -- New Super

2011-07-05 Thread Stefan Behnel
Stefan Behnel, 05.07.2011 10:04: Vitja Makarov, 05.07.2011 09:17: 2011/7/5 Stefan Behnel: Vitja Makarov, 05.07.2011 08:21: I was thinking about implementing new super() with no arguments. http://trac.cython.org/cython_trac/ticket/696 The problem is where to store __class__, I see two option

[Cython] Cython backend aiming PyPy Status

2011-07-05 Thread Romain Guillebert
Hi I created a blog post summarizing what I've done the last few weeks on the Cython backend aiming PyPy. It's located at this URL : http://rguillebert.blogspot.com/2011/07/cython-backend-aiming-pypy-status.html Cheers Romain ___ cython-devel mailing l

Re: [Cython] Cython backend aiming PyPy Status

2011-07-05 Thread Stefan Behnel
Romain Guillebert, 06.07.2011 05:10: I created a blog post summarizing what I've done the last few weeks on the Cython backend aiming PyPy. It's located at this URL : http://rguillebert.blogspot.com/2011/07/cython-backend-aiming-pypy-status.html Congrats, that sounds pretty usable already. In