[issue19239] add inspect functions to retrieve attributes from both old dir() and overridden dir()

Ethan Furman report at bugs.python.org
Sun Oct 13 00:38:26 CEST 2013


New submission from Ethan Furman:

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().

----------
title: add inspect functions to -> add inspect functions to retrieve attributes from both old dir() and overridden dir()
type:  -> enhancement
versions: +Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue19239>
_______________________________________


More information about the Python-bugs-list mailing list