]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Removed spurious print statement in test.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Mon, 8 Feb 2010 06:50:14 +0000 (06:50 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Mon, 8 Feb 2010 06:50:14 +0000 (06:50 +0000)
Lib/test/test_logging.py

index ae06341b7b3f86e2d4216c0221c60e280d6bfd7d..11c754ab01267f368e3bb0f4859fb10087cf502b 100644 (file)
@@ -1638,7 +1638,6 @@ class ManagerTest(BaseTest):
         self.assertRaises(TypeError, man.setLoggerClass, int)
         man.setLoggerClass(MyLogger)
         logger = man.getLogger('test')
-        print >> open('/tmp/tmp.txt', 'w'), type(logger)
         logger.warning('should appear in logged')
         logging.warning('should not appear in logged')