[Python-checkins] cpython (merge 3.2 -> default): Merged comment correction from 3.2.

vinay.sajip python-checkins at python.org
Mon Apr 9 20:47:24 CEST 2012


http://hg.python.org/cpython/rev/e493ff03561f
changeset:   76186:e493ff03561f
parent:      76184:02ecb8261cd8
parent:      76185:0da6aa7bc90b
user:        Vinay Sajip <vinay_sajip at yahoo.co.uk>
date:        Mon Apr 09 19:47:16 2012 +0100
summary:
  Merged comment correction from 3.2.

files:
  Doc/howto/logging-cookbook.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -1377,7 +1377,7 @@
         A simple handler for logging events. It runs in the listener process and
         dispatches events to loggers based on the name in the received record,
         which then get dispatched, by the logging system, to the handlers
-        configured for those records.
+        configured for those loggers.
         """
         def handle(self, record):
             logger = logging.getLogger(record.name)

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


More information about the Python-checkins mailing list