[issue11509] fileinput module unit test coverage improvements

2011-03-15 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset f2e04ce75f0b by briancurtin in branch 'default': Fix #11509. Significantly increase test coverage for fileinput. http://hg.python.org/cpython/rev/f2e04ce75f0b -- nosy: +python-dev ___

[issue11509] fileinput module unit test coverage improvements

2011-03-15 Thread Brian Curtin
Brian Curtin br...@python.org added the comment: Many thanks for the patch, Denver! -- assignee: - brian.curtin resolution: - fixed stage: - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue11509] fileinput module unit test coverage improvements

2011-03-15 Thread Roundup Robot
Roundup Robot devnull@devnull added the comment: New changeset 9448691fe084 by briancurtin in branch 'default': Add news item for #11509. http://hg.python.org/cpython/rev/9448691fe084 -- ___ Python tracker rep...@bugs.python.org

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
New submission from Denver Coneybeare denver.coneybe...@gmail.com: As part of the CPython sprints at PyCon 2011 I am improving the unit test coverage for the fileinput module. Primarily, this will be adding unit tests for the global functions, which right now are almost completely untested.

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21139/fileinput_unittests_v2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21141/fileinput_unittests_v3.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21145/fileinput_unittests_v5.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21147/fileinput_unittests_v6.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21149/fileinput_unittests_v7.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Removed file: http://bugs.python.org/file21138/fileinput_unittests_v1.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21150/fileinput_unittests_v8.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21151/fileinput_unittests_v9.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21153/fileinput_unittests_v10.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21154/fileinput_unittests_v11.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21163/fileinput_unittests_v12.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21193/fileinput_unittests_v12.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Changes by Denver Coneybeare denver.coneybe...@gmail.com: Added file: http://bugs.python.org/file21195/fileinput_unittests_v13.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11509 ___

[issue11509] fileinput module unit test coverage improvements

2011-03-14 Thread Denver Coneybeare
Denver Coneybeare denver.coneybe...@gmail.com added the comment: fileinput_unittests_v13.patch is the final patch. Test coverage increased from 65% to 93% with this patch. The only code left untested is fileinput._test(), which by its name suggests that testing is not required. --