[Python-checkins] r78103 - python/trunk/Lib/test/test_logging.py

vinay.sajip python-checkins at python.org
Mon Feb 8 07:50:14 CET 2010


Author: vinay.sajip
Date: Mon Feb  8 07:50:14 2010
New Revision: 78103

Log:
Removed spurious print statement in test.

Modified:
   python/trunk/Lib/test/test_logging.py

Modified: python/trunk/Lib/test/test_logging.py
==============================================================================
--- python/trunk/Lib/test/test_logging.py	(original)
+++ python/trunk/Lib/test/test_logging.py	Mon Feb  8 07:50:14 2010
@@ -1638,7 +1638,6 @@
         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')
 


More information about the Python-checkins mailing list