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 chris.jerdonek
Recipients chris.jerdonek, r.david.murray, vinay.sajip
Date 2013-01-08.11:29:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357644555.37.0.171225397334.issue16889@psf.upfronthosting.co.za>
In-reply-to
Content
This can happen with any standard logging configuration when there are writes to sys.stderr that don't end with "\n".  I'm using Mac OS X 10.7.  A minimal script:

import logging, unittest

log = logging.getLogger()

class Test(unittest.TestCase):
    def setUp(self):
        log.info("setting up")
    def test1(self):
        pass
    def test2(self):
        pass

logging.basicConfig(level=logging.INFO)
unittest.main()

Output:

INFO:root:setting up
.INFO:root:setting up
.
----------------------------------------------------------------------
Ran 2 tests in 0.001s
History
Date User Action Args
2013-01-08 11:29:15chris.jerdoneksetrecipients: + chris.jerdonek, vinay.sajip, r.david.murray
2013-01-08 11:29:15chris.jerdoneksetmessageid: <1357644555.37.0.171225397334.issue16889@psf.upfronthosting.co.za>
2013-01-08 11:29:15chris.jerdoneklinkissue16889 messages
2013-01-08 11:29:15chris.jerdonekcreate