[issue18150] Duplicate test inside TestSingleDispatch

2013-06-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset a16bebe653b1 by Łukasz Langa in branch 'default': Fixed #18150: duplicate test inside TestSingleDispatch http://hg.python.org/cpython/rev/a16bebe653b1 -- nosy: +python-dev ___ Python tracker

[issue18150] Duplicate test inside TestSingleDispatch

2013-06-07 Thread Łukasz Langa
Łukasz Langa added the comment: Good catch. Thanks for the patch, Vajrasky. -- assignee: - lukasz.langa resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18150

[issue18150] Duplicate test inside TestSingleDispatch

2013-06-06 Thread Vajrasky Kok
New submission from Vajrasky Kok: There is a duplicate test inside TestSingleDispatch in file Lib/test/test_functools.py. The method test_mro and test_classic_classes are not different at all. -- components: Tests files: duplicate_test_for_testsingledispatch.diff keywords: patch

[issue18150] Duplicate test inside TestSingleDispatch

2013-06-06 Thread Vajrasky Kok
Changes by Vajrasky Kok sky@speaklikeaking.com: Removed file: http://bugs.python.org/file30484/duplicate_test_for_testsingledispatch.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18150 ___

[issue18150] Duplicate test inside TestSingleDispatch

2013-06-06 Thread Vajrasky Kok
Vajrasky Kok added the comment: I think to test the mro case, we have to test the multiple inheritance with the same ancestor case. Attached my guess of the correct test should be. -- Added file: http://bugs.python.org/file30491/test_mro.diff ___