[issue18581] Duplicate test and missing class test in test_abc.py

2013-08-08 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report and the patch! -- assignee: -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> behavior versions: +Python 3.3 ___ Pytho

[issue18581] Duplicate test and missing class test in test_abc.py

2013-08-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset e8f8f81c5af6 by Ezio Melotti in branch '3.3': #18581: remove duplicate test and run a test class that was skipped. Initial patch by Vajrasky Kok. http://hg.python.org/cpython/rev/e8f8f81c5af6 New changeset 328b1a29102c by Ezio Melotti in branch 'd

[issue18581] Duplicate test and missing class test in test_abc.py

2013-07-28 Thread Vajrasky Kok
New submission from Vajrasky Kok: There are two classes in Lib/test/test_abc.py, which are TestABC and TestLegacyAPI. Only TestABC is being unit tested. Beside that TestLegacyAPI class has one duplicate test, which is test_abstractmethod_integration with TestABC class. -- components: