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 ethan.furman
Recipients ethan.furman
Date 2013-10-12.22:38:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381617506.87.0.926836334477.issue19239@psf.upfronthosting.co.za>
In-reply-to
Content
Currently we have

  - inspect.getmembers
  - inspect.classify_class_attrs

But they only return what dir() returns.

It is proposed that we add

  - inspect.get_all_members
  - inspect.classify_all_class_attrs

which will look at all the attributes returned by both the original dir() and the overridden dir().
History
Date User Action Args
2013-10-12 22:38:26ethan.furmansetrecipients: + ethan.furman
2013-10-12 22:38:26ethan.furmansetmessageid: <1381617506.87.0.926836334477.issue19239@psf.upfronthosting.co.za>
2013-10-12 22:38:26ethan.furmanlinkissue19239 messages
2013-10-12 22:38:26ethan.furmancreate