diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2008-12-30 07:32:59 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2008-12-30 07:32:59 (GMT) |
commit | a17775fab4fe6c9b2bd1ad539b6b6f072fceeb12 (patch) | |
tree | 96c3af0cb1500dc497ab9ff2e798801de481dd24 /Doc | |
parent | f1f2f686fe06c651e082029d7e76a7eefdb8a2de (diff) | |
download | cpython-a17775fab4fe6c9b2bd1ad539b6b6f072fceeb12.zip cpython-a17775fab4fe6c9b2bd1ad539b6b6f072fceeb12.tar.gz cpython-a17775fab4fe6c9b2bd1ad539b6b6f072fceeb12.tar.bz2 |
Minor documentation change relating to NullHandler.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/logging.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index 7c104b7..d1e4f76 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -566,10 +566,10 @@ provided: 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 |