[Python-checkins] r68057 - python/trunk/Doc/library/logging.rst

vinay.sajip python-checkins at python.org
Tue Dec 30 08:01:25 CET 2008


Author: vinay.sajip
Date: Tue Dec 30 08:01:25 2008
New Revision: 68057

Log:
Minor documentation change relating to NullHandler.

Modified:
   python/trunk/Doc/library/logging.rst

Modified: python/trunk/Doc/library/logging.rst
==============================================================================
--- python/trunk/Doc/library/logging.rst	(original)
+++ python/trunk/Doc/library/logging.rst	Tue Dec 30 08:01:25 2008
@@ -568,10 +568,10 @@
 
 The :class:`NullHandler` class was not present in previous versions.
 
-The :class:`StreamHandler` and :class:`FileHandler` classes are defined in the
-core logging package. The other handlers are defined in a sub- module,
-:mod:`logging.handlers`. (There is also another sub-module,
-:mod:`logging.config`, for configuration functionality.)
+The :class:`NullHandler`, :class:`StreamHandler` and :class:`FileHandler`
+classes are defined in the core logging package. The other handlers are
+defined in a sub- module, :mod:`logging.handlers`. (There is also another
+sub-module, :mod:`logging.config`, for configuration functionality.)
 
 Logged messages are formatted for presentation through instances of the
 :class:`Formatter` class. They are initialized with a format string suitable for


More information about the Python-checkins mailing list