[issue11578] Increase test coverage for timeit.py

2015-01-30 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue11578] Increase test coverage for timeit.py

2015-01-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset aa6f8e067ec3 by Serhiy Storchaka in branch '2.7': Use float division to avoid deprecation warning in test_timeit (issue #11578). https://hg.python.org/cpython/rev/aa6f8e067ec3 -- ___ Python tracker

[issue11578] Increase test coverage for timeit.py

2015-01-30 Thread koobs
Changes by koobs : -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue11578] Increase test coverage for timeit.py

2015-01-30 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue11578] Increase test coverage for timeit.py

2015-01-30 Thread Stefan Krah
Stefan Krah added the comment: I think all 2.7 bots are broken. :) -- nosy: +skrah ___ Python tracker ___ ___ Python-bugs-list mailing

[issue11578] Increase test coverage for timeit.py

2015-01-29 Thread koobs
koobs added the comment: 7e7c825f75ad832d973542bfcf9ecd6e5dd3f981 broke koobs-freebsd9 and koobs-freebsd10, with: == FAIL: test_main_exception (test.test_timeit.TestTimeit) --

[issue11578] Increase test coverage for timeit.py

2015-01-26 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7e7c825f75ad by Serhiy Storchaka in branch '2.7': Issue #11578: Backported test for the timeit module. https://hg.python.org/cpython/rev/7e7c825f75ad -- ___ Python tracker

[issue11578] Increase test coverage for timeit.py

2011-03-17 Thread Éric Araujo
Éric Araujo added the comment: Is there no resource (in the regrtest machinery) that could be used to flag those intensive tests? Nit: the NEWS entry lacks a “by”. -- nosy: +eric.araujo ___ Python tracker __

[issue11578] Increase test coverage for timeit.py

2011-03-16 Thread R. David Murray
Changes by R. David Murray : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue11578] Increase test coverage for timeit.py

2011-03-16 Thread Michael Henry
Michael Henry added the comment: Issue #5633 contains two additional unit tests that can't be added until that ticket's bug is fixed. -- nosy: +rhettinger resolution: accepted -> status: closed -> open ___ Python tracker

[issue11578] Increase test coverage for timeit.py

2011-03-16 Thread R. David Murray
R. David Murray added the comment: We commented out a few of the tests because they took too long to run due to the large default loop count. timeit would have to be further modified to support testing the default, which probably isn't worth it. -- resolution: -> accepted stage: ->

[issue11578] Increase test coverage for timeit.py

2011-03-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset 628a3679dc14 by R David Murray in branch '3.2': #11578: add unit tests for timeit module. http://hg.python.org/cpython/rev/628a3679dc14 New changeset 2f443a200b8c by R David Murray in branch 'default': Merge #11578 test from 3.2. http://hg.python.o

[issue11578] Increase test coverage for timeit.py

2011-03-16 Thread Michael Henry
New submission from Michael Henry : The timeit.py module has no specific tests. The attached patch adds Lib/test/test_timeit.py for unit testing, along with slight modifications to timeit.py to support predictable unit testing. -- components: Library (Lib) files: timeit_unit_test.patch