[issue11903] Incorrect test code in test_logging.py

2011-04-21 Thread Vinay Sajip
Vinay Sajip added the comment: Checked in, see changeset fecf9e6d7630 - thanks. -- assignee: -> vinay.sajip nosy: +vinay.sajip resolution: -> fixed status: open -> closed ___ Python tracker _

[issue11903] Incorrect test code in test_logging.py

2011-04-21 Thread Santoso Wijaya
Santoso Wijaya added the comment: Simple fix. -- keywords: +patch Added file: http://bugs.python.org/file21753/issue11903_py33.patch ___ Python tracker ___ _

[issue11903] Incorrect test code in test_logging.py

2011-04-21 Thread Santoso Wijaya
Santoso Wijaya added the comment: Introduced in changeset c7f7672b70a9. -- nosy: +santa4nt ___ Python tracker ___ ___ Python-bugs-lis

[issue11903] Incorrect test code in test_logging.py

2011-04-21 Thread Stefan Behnel
New submission from Stefan Behnel : In test file test_logging.py, around line 2359, list.append() is called with two arguments instead of one. I suppose it is meant to be called with a tuple. class ModuleLevelMiscTest(BaseTest): [...] def _test_log(self, method, level=None): cal