diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2008-12-30 07:01:25 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2008-12-30 07:01:25 (GMT) |
commit | 7cc9755cfb15c41fe841b52aeeff0ba9c7eb1ac8 (patch) | |
tree | 0474a3862353ca1fe573f4e5982c09f08adcc2e3 /Doc/library | |
parent | 180e4007661f4480c3be50289748526c2647d28e (diff) | |
download | cpython-7cc9755cfb15c41fe841b52aeeff0ba9c7eb1ac8.zip cpython-7cc9755cfb15c41fe841b52aeeff0ba9c7eb1ac8.tar.gz cpython-7cc9755cfb15c41fe841b52aeeff0ba9c7eb1ac8.tar.bz2 |
Minor documentation change relating to NullHandler.
Diffstat (limited to 'Doc/library')
-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 c5fde33..483b739 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -568,10 +568,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 |