Re: [Python-Dev] a patch to inspect and a non-feature request

2005-05-12 Thread Michele Simionato
On 5/12/05, Steven Bethard <[EMAIL PROTECTED]> wrote: >super doesn't work with "meta-attributes" and classmethods: > > py> super(C, C).__name__ > Traceback (most recent call last): > File "", line 1, in ? > AttributeError: 'super' object has no attribute '__name__' Actually this is the Right Th

Re: [Python-Dev] a patch to inspect and a non-feature request

2005-05-12 Thread Steven Bethard
On 5/12/05, Michele Simionato <[EMAIL PROTECTED]> wrote: > In my experience super is a huge can of worms and actually I have a > non-feature > request about the descriptor aspect of super: I would like super's > __get__ method > and the possibily to call super with just one argument to be removed

[Python-Dev] a patch to inspect and a non-feature request

2005-05-12 Thread Michele Simionato
Well, I logged into Sourceforge with the idea of filing my feature request about copying functions, and then my eye went on my previous submissions. It seems it takes some time to fix non-critical bugs, isn't it? ;) Two years ago, I discovered a bug with pydoc for classes containing "super" objec