This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author edloper
Recipients
Date 2004-07-16.15:12:16
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=195958

The problem is that inspect.get_class_attrs()'s "method" 
classification is a bit hetergeneous: it contains methods, 
and any method descriptors *except* classmethod and 
staticmethod.  The proposed patch will fix behavior for 
super(), but not for any other method descriptors.  So 
perhaps it would be better to explicitly test "_isfunction(v) 
or _ismethod(v)" rather than "not isinstance(value, 
super)".
History
Date User Action Args
2007-08-23 14:20:12adminlinkissue902628 messages
2007-08-23 14:20:12admincreate