[issue17648] test_urllib2 convert doctests to unittest

2013-04-09 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue17648] test_urllib2 convert doctests to unittest

2013-04-09 Thread Senthil Kumaran
Senthil Kumaran added the comment: Changed in active branches (3.3 and default). -- status: open -> closed ___ Python tracker ___ ___

[issue17648] test_urllib2 convert doctests to unittest

2013-04-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5c9b36969abc by Senthil Kumaran in branch '3.3': #17648 - convert test_urllib2.py doctests to unittests http://hg.python.org/cpython/rev/5c9b36969abc -- ___ Python tracker

[issue17648] test_urllib2 convert doctests to unittest

2013-04-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: I have pushed the changes since they are restricted to test files. If there are review comments, I shall do make the changes. I shall consider to to make 3.3 tests close to default branch ones so that fixes can be backported. (Leaving the bug open for that).

[issue17648] test_urllib2 convert doctests to unittest

2013-04-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset eb632aafff57 by Senthil Kumaran in branch 'default': #17648 - Clean up test_urllib2.py. Converted doctests to unittest for http://hg.python.org/cpython/rev/eb632aafff57 -- nosy: +python-dev ___ Python tra

[issue17648] test_urllib2 convert doctests to unittest

2013-04-06 Thread Senthil Kumaran
New submission from Senthil Kumaran: Sometime back during an IRC conversation we realized that converting test_urllib2 doctests to proper unittest may help in various ways. a) Improve coverage report (?) Know what is covered and not. b) Helps expand it further when new features are added. Here