[issue8636] enumerate() test cases do not cover optional start argument

2010-06-21 Thread Éric Araujo
Changes by Éric Araujo : -- stage: patch review -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue8636] enumerate() test cases do not cover optional start argument

2010-05-25 Thread Mark Dickinson
Mark Dickinson added the comment: NameError fixed in r81527 through r81530. -- ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue8636] enumerate() test cases do not cover optional start argument

2010-05-25 Thread Mark Dickinson
Mark Dickinson added the comment: It looks like there's still a bit of brokenness here: when I run test_enumerate by itself: ./python.exe Lib/test/test_enumerate.py I get the following: Traceback (most recent call last): File "Lib/test/test_enumerate.py", line 253, in test_main(verbo

[issue8636] enumerate() test cases do not cover optional start argument

2010-05-08 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r80991. Thanks for the patch. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue8636] enumerate() test cases do not cover optional start argument

2010-05-06 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: The patch looks fine, but I wonder if regrtest.py could be taught to warn about situations like this. Maybe run_unitest() should check that all leaf subclasses of TestCase in the module are covered. Ideally, of course, test_main() should be made optio

[issue8636] enumerate() test cases do not cover optional start argument

2010-05-06 Thread Scott Dial
New submission from Scott Dial : The issue2831 patch test cases are not actually being run by test_enumerate and they were broken tests anyways. This patch fixes the brokenness. -- components: Interpreter Core, Tests files: test_enumerate.patch keywords: patch messages: 105147 nosy: sco