Chris Jerdonek added the comment: 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 ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue16889> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com