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 skip.montanaro
Recipients
Date 2001-05-23.20:18:01
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Given the following class hierarchy:

class A:
  def foo(self):
    "do the foo"
    pass

class B(A):
  def foo(self):
    pass

class C(B):
  def foo(self):
    "do the foo in C"
    pass

if you ask pydoc for help about A or C you will get the
corresponding doc string.  If you ask for help about B,
however, you see no documentation.  Would be kinda nice
if pydoc.help(B) displayed "do the foo" as the doc
string for B.foo.
History
Date User Action Args
2007-08-23 13:54:35adminlinkissue426740 messages
2007-08-23 13:54:35admincreate