summaryrefslogtreecommitdiff
path: root/Lib/test/test_logging.py
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2010-02-08 06:50:14 +0000
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2010-02-08 06:50:14 +0000
commit7ed8001862483633eca24f30499116f1d41c6758 (patch)
tree7d2f52c955b1befbf65725e98dfddcf53ddefd99 /Lib/test/test_logging.py
parent9e483ef66dceefeb6f1928ff7c463316539931cc (diff)
downloadcpython-git-7ed8001862483633eca24f30499116f1d41c6758.tar.gz
Removed spurious print statement in test.
Diffstat (limited to 'Lib/test/test_logging.py')
-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 ae06341b7b..11c754ab01 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')