[Python-checkins] cpython: Tidied comments and docstrings.

vinay.sajip python-checkins at python.org
Wed Apr 20 16:41:22 CEST 2011


http://hg.python.org/cpython/rev/dd8d999713f4
changeset:   69470:dd8d999713f4
user:        Vinay Sajip <vinay_sajip at yahoo.co.uk>
date:        Wed Apr 20 15:41:14 2011 +0100
summary:
  Tidied comments and docstrings.

files:
  Lib/test/test_logging.py |  5 ++---
  1 files changed, 2 insertions(+), 3 deletions(-)


diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -2255,7 +2255,7 @@
 
 class ShutdownTest(BaseTest):
 
-    """Tets suite for the shutdown method."""
+    """Test suite for the shutdown method."""
 
     def setUp(self):
         super(ShutdownTest, self).setUp()
@@ -2342,7 +2342,7 @@
 
 class ModuleLevelMiscTest(BaseTest):
 
-    """Tets suite for some module level methods."""
+    """Test suite for some module level methods."""
 
     def test_disable(self):
         old_disable = logging.root.manager.disable
@@ -2434,7 +2434,6 @@
         logging._handlerList[:] = self.saved_handler_list
         logging.root.level = self.original_logging_level
 
-    #@unittest.skipIf(True, "test disabled, issue #11557")
     def test_no_kwargs(self):
         logging.basicConfig()
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list