[issue5693] TestSuite.__iter__ is not hookable.

2009-04-04 Thread Michael Foord
Changes by Michael Foord : -- resolution: -> accepted status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue5693] TestSuite.__iter__ is not hookable.

2009-04-04 Thread Benjamin Peterson
Benjamin Peterson added the comment: This looks correct. Just while your at it, you can fix the if statement in the debug() method by putting the body on another line. -- nosy: +benjamin.peterson ___ Python tracker

[issue5693] TestSuite.__iter__ is not hookable.

2009-04-04 Thread Michael Foord
Michael Foord added the comment: +1 it's a minor change. -- nosy: +michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue5693] TestSuite.__iter__ is not hookable.

2009-04-04 Thread Robert Collins
New submission from Robert Collins : Currently if you alter the way TestSuite iterates one must always implement countTestCases, run, debug etc. The attached patch would make this simpler. If this looks ok I'll write up a test for it. -- components: Library (Lib) files: testsuite.patch