[issue24674] pyclbr not recursively showing classes in packages

2015-07-20 Thread David Worenklein
David Worenklein added the comment: P.S. Here are the results after the patch: C => ['foo.module.B', 'foo.module.A', 'object'] -- ___ Python tracker ___ _

[issue24674] pyclbr not recursively showing classes in packages

2015-07-20 Thread David Worenklein
New submission from David Worenklein: In the following example, pyclbr does not report that foo.module.A is a superclass of C: __module2.py__ import foo.module class C(foo.module.B): pass __foo/module.py__ class A(object): def foo(self): print "bar" class B(A): pass __tes