[Python-checkins] cpython (merge 3.2 -> 3.2): merge heads

benjamin.peterson python-checkins at python.org
Mon Apr 9 21:06:07 CEST 2012


http://hg.python.org/cpython/rev/aa6f9ab45da8
changeset:   76195:aa6f9ab45da8
branch:      3.2
parent:      76192:5168483316b5
parent:      76185:0da6aa7bc90b
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Apr 09 15:05:23 2012 -0400
summary:
  merge heads

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
@@ -1350,7 +1350,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