[issue18830] Remove duplicates from a result of getclasstree()

2013-09-05 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue18830] Remove duplicates from a result of getclasstree()

2013-09-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 39d0dfa5808c by Serhiy Storchaka in branch '3.3': Issue #18830: inspect.getclasstree() no more produces duplicated entries even http://hg.python.org/cpython/rev/39d0dfa5808c New changeset 86ab7b7c173e by Serhiy Storchaka in branch 'default': Issue #

[issue18830] Remove duplicates from a result of getclasstree()

2013-08-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch with additional test. -- Added file: http://bugs.python.org/file31504/getclasstree_no_dups_2.patch ___ Python tracker ___

[issue18830] Remove duplicates from a result of getclasstree()

2013-08-27 Thread Vajrasky Kok
Vajrasky Kok added the comment: What about if you extend the test coverage as well? Right now, we don't have test to test getclasstree method with unique parameter set to false. -- nosy: +vajrasky ___ Python tracker

[issue18830] Remove duplicates from a result of getclasstree()

2013-08-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka keywords: +needs review ___ Python tracker ___ ___ Python-bugs-list ma

[issue18830] Remove duplicates from a result of getclasstree()

2013-08-26 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- versions: -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue18830] Remove duplicates from a result of getclasstree()

2013-08-26 Thread Éric Araujo
Éric Araujo added the comment: +1 -- versions: +Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue18830] Remove duplicates from a result of getclasstree()

2013-08-25 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: inspect.getclasstree() produces duplicated entities when it's argument contains duplicated classes. This happened when a module contains class aliases. For example `pydoc zipfile` outputs three entities for BadZipFile (BadZipfile and error are aliases of B