[issue2656] Autodoc should skip inherited methods

2008-05-04 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Thanks. In SVN (r62695), autodoc now skips inherited members unless the :inherited-members: flag option is given. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]>

[issue2656] Autodoc should skip inherited methods

2008-04-18 Thread John Millikin
New submission from John Millikin <[EMAIL PROTECTED]>: 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 docu