logging: tidied up some docstrings.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Fri, 3 Dec 2010 13:01:11 +0000 (13:01 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Fri, 3 Dec 2010 13:01:11 +0000 (13:01 +0000)
Lib/logging/__init__.py

index 5256f9511e79a9ea82905591905d205c56112988..04d9f30523c6ba22ef4f5de2e29f05422b176f5f 100644 (file)
@@ -326,7 +326,7 @@ _logRecordFactory = LogRecord
 
 def setLogRecordFactory(factory):
     """
-    Set the class to be used when instantiating a log record.
+    Set the factory to be used when instantiating a log record.
 
     :param factory: A callable which will be called to instantiate
     a log record.
@@ -336,7 +336,7 @@ def setLogRecordFactory(factory):
 
 def getLogRecordFactory():
     """
-    Return the class to be used when instantiating a log record.
+    Return the factory to be used when instantiating a log record.
     """
 
     return _logRecordFactory
@@ -1105,7 +1105,7 @@ class Manager(object):
 
     def setLogRecordFactory(self, factory):
         """
-        Set the class to be used when instantiating a log record with this
+        Set the factory to be used when instantiating a log record with this
         Manager.
         """
         self.logRecordFactory = factory