Re: [Python-Dev] Accepting PEP 445

2013-07-09 Thread Martin v. Löwis
Am 07.07.13 01:04, schrieb Victor Stinner: > 2013/7/6 Antonio Cavallo : >> Could that remove the need for the --with-pydebug flag? > > With the PEP 445, you still have to recompile Python with > --with-debug, but you don't have to recompile Python extensions > anymore. Really? What about _PyObje

Re: [Python-Dev] Hooking into super() attribute resolution

2013-07-09 Thread Ronald Oussoren
On 9 Jul, 2013, at 1:21, Steve Dower wrote: >> > > Except that if it's on a metaclass, the 'instance' it has access to is cls. > The descriptor side of things is more interesting, but I see no reason why > super can't do that itself, since it knows the actual instance to call > __get__ with.