[Python-checkins] r68059 - python/branches/py3k/Doc/library/logging.rst

vinay.sajip python-checkins at python.org
Tue Dec 30 08:32:59 CET 2008


Author: vinay.sajip
Date: Tue Dec 30 08:32:59 2008
New Revision: 68059

Log:
Minor documentation change relating to NullHandler.

Modified:
   python/branches/py3k/Doc/library/logging.rst

Modified: python/branches/py3k/Doc/library/logging.rst
==============================================================================
--- python/branches/py3k/Doc/library/logging.rst	(original)
+++ python/branches/py3k/Doc/library/logging.rst	Tue Dec 30 08:32:59 2008
@@ -566,10 +566,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