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 jmillikin
Recipients georg.brandl, jmillikin
Date 2008-04-18.21:02:41
SpamBayes Score 0.27209637
Marked as misclassified No
Message-id <1208552563.99.0.233047062632.issue2656@psf.upfronthosting.co.za>
In-reply-to
Content
Using the following class layout:

class A (object):
	def a (self):
		"A.a"
		pass
class B (A):
	def b (self):
		"B.b"
		pass

If sphinx.ext.autodoc is used to extract documentation, the entry for
class B will have subentries for both the a() and b() methods. This is
unnecessary clutter. It would be nice if the inherited method was
skipped when documenting B, or even better if it was inserted as a
"stub" linking to the documentation for A.a().
History
Date User Action Args
2008-04-18 21:02:44jmillikinsetspambayes_score: 0.272096 -> 0.27209637
recipients: + jmillikin, georg.brandl
2008-04-18 21:02:44jmillikinsetspambayes_score: 0.272096 -> 0.272096
messageid: <1208552563.99.0.233047062632.issue2656@psf.upfronthosting.co.za>
2008-04-18 21:02:42jmillikinlinkissue2656 messages
2008-04-18 21:02:41jmillikincreate