diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-02-08 06:50:14 +0000 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-02-08 06:50:14 +0000 |
commit | 7ed8001862483633eca24f30499116f1d41c6758 (patch) | |
tree | 7d2f52c955b1befbf65725e98dfddcf53ddefd99 /Lib/test/test_logging.py | |
parent | 9e483ef66dceefeb6f1928ff7c463316539931cc (diff) | |
download | cpython-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.py | 1 |
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') |