diff options
author | Martin Panter <vadmium+py@gmail.com> | 2017-01-14 09:54:57 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2017-01-14 09:54:57 (GMT) |
commit | 4659ddc433205a4e02e365b9b299221d7ac12113 (patch) | |
tree | d1ff48bf6faeda88d32af413d9230220666fa960 /Doc/library/logging.handlers.rst | |
parent | 758c7d044bb98da9e98654fa91961f54a915712d (diff) | |
parent | 8f1378366e9fc0d7f22fda302f04bf822ae34cc1 (diff) | |
download | cpython-4659ddc433205a4e02e365b9b299221d7ac12113.zip cpython-4659ddc433205a4e02e365b9b299221d7ac12113.tar.gz cpython-4659ddc433205a4e02e365b9b299221d7ac12113.tar.bz2 |
Merge doc fixes from 3.5
Diffstat (limited to 'Doc/library/logging.handlers.rst')
-rw-r--r-- | Doc/library/logging.handlers.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst index 5fc32d1..f13f765 100644 --- a/Doc/library/logging.handlers.rst +++ b/Doc/library/logging.handlers.rst @@ -946,8 +946,8 @@ possible, while any potentially slow operations (such as sending an email via .. class:: QueueHandler(queue) Returns a new instance of the :class:`QueueHandler` class. The instance is - initialized with the queue to send messages to. The queue can be any queue- - like object; it's used as-is by the :meth:`enqueue` method, which needs + initialized with the queue to send messages to. The queue can be any + queue-like object; it's used as-is by the :meth:`enqueue` method, which needs to know how to send messages to it. @@ -1002,8 +1002,8 @@ possible, while any potentially slow operations (such as sending an email via Returns a new instance of the :class:`QueueListener` class. The instance is initialized with the queue to send messages to and a list of handlers which - will handle entries placed on the queue. The queue can be any queue- - like object; it's passed as-is to the :meth:`dequeue` method, which needs + will handle entries placed on the queue. The queue can be any queue-like + object; it's passed as-is to the :meth:`dequeue` method, which needs to know how to get messages from it. If ``respect_handler_level`` is ``True``, a handler's level is respected (compared with the level for the message) when deciding whether to pass messages to that handler; otherwise, the behaviour |