summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2010-02-08 06:50:14 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2010-02-08 06:50:14 (GMT)
commit7ed8001862483633eca24f30499116f1d41c6758 (patch)
tree7d2f52c955b1befbf65725e98dfddcf53ddefd99
parent9e483ef66dceefeb6f1928ff7c463316539931cc (diff)
downloadcpython-7ed8001862483633eca24f30499116f1d41c6758.zip
cpython-7ed8001862483633eca24f30499116f1d41c6758.tar.gz
cpython-7ed8001862483633eca24f30499116f1d41c6758.tar.bz2
Removed spurious print statement in test.
-rw-r--r--Lib/test/test_logging.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
index ae06341..11c754a 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')