From: Vinay Sajip Date: Mon, 8 Feb 2010 06:50:14 +0000 (+0000) Subject: Removed spurious print statement in test. X-Git-Tag: v2.7a4~220 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7ed8001862483633eca24f30499116f1d41c6758;p=thirdparty%2FPython%2Fcpython.git Removed spurious print statement in test. --- diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index ae06341b7b3f..11c754ab0126 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -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')