This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author scoder
Recipients scoder
Date 2011-04-21.19:24:11
SpamBayes Score 2.246998e-06
Marked as misclassified No
Message-id <1303413851.9.0.62222052132.issue11903@psf.upfronthosting.co.za>
In-reply-to
Content
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):
        called = []
        patch(self, logging, 'basicConfig',
              lambda *a, **kw: called.append(a, kw))  # <====
History
Date User Action Args
2011-04-21 19:24:12scodersetrecipients: + scoder
2011-04-21 19:24:11scodersetmessageid: <1303413851.9.0.62222052132.issue11903@psf.upfronthosting.co.za>
2011-04-21 19:24:11scoderlinkissue11903 messages
2011-04-21 19:24:11scodercreate