This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Typo on logging.handlers.QueueListener documentation
Type: Stage: resolved
Components: Documentation Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, vinay.sajip, willingc, wuck, xtreak
Priority: normal Keywords: patch

Created on 2019-09-05 01:23 by wuck, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 15708 merged python-dev, 2019-09-06 03:08
PR 15893 merged miss-islington, 2019-09-11 06:44
PR 15894 merged miss-islington, 2019-09-11 06:44
Messages (5)
msg351161 - (view) Author: (wuck) * Date: 2019-09-05 01:23
There appears to be a typo on the documentation page for logging.handlers.QueueListener at https://docs.python.org/3/library/logging.handlers.html#logging.handlers.QueueListener

The line "Changed in version 3.5: The respect_handler_levels argument was added." should instead refer to "Changed in version 3.5: The respect_handler_level argument was added.", removing the 's' at the end of respect_handler_level.
msg351183 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2019-09-05 07:13
Thanks for the report. Would you be able to make a PR for this? I think this is a good newcomer friendly issue.
msg351766 - (view) Author: Carol Willing (willingc) * (Python committer) Date: 2019-09-11 06:44
New changeset efd5741ae953e50a6654e04cf731da86a1307296 by Carol Willing (wwuck) in branch 'master':
bpo-38034: Fix typo in logging.handlers.rst (GH-15708)
https://github.com/python/cpython/commit/efd5741ae953e50a6654e04cf731da86a1307296
msg351767 - (view) Author: Carol Willing (willingc) * (Python committer) Date: 2019-09-11 06:56
New changeset f357cd022ec82a4099ac7a09047d2b556a1c91ec by Carol Willing (Miss Islington (bot)) in branch '3.8':
bpo-38034: Fix typo in logging.handlers.rst (GH-15708) (GH-15893)
https://github.com/python/cpython/commit/f357cd022ec82a4099ac7a09047d2b556a1c91ec
msg351768 - (view) Author: Carol Willing (willingc) * (Python committer) Date: 2019-09-11 06:56
New changeset 2a8560ae99213954158789b9dd7275b8ffa2086a by Carol Willing (Miss Islington (bot)) in branch '3.7':
bpo-38034: Fix typo in logging.handlers.rst (GH-15708) (GH-15894)
https://github.com/python/cpython/commit/2a8560ae99213954158789b9dd7275b8ffa2086a
History
Date User Action Args
2022-04-11 14:59:19adminsetgithub: 82215
2019-09-11 09:01:27vinay.sajipsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-09-11 06:56:52willingcsetmessages: + msg351768
2019-09-11 06:56:13willingcsetmessages: + msg351767
2019-09-11 06:44:56miss-islingtonsetpull_requests: + pull_request15535
2019-09-11 06:44:49miss-islingtonsetpull_requests: + pull_request15534
2019-09-11 06:44:42willingcsetnosy: + willingc
messages: + msg351766
2019-09-06 03:08:25python-devsetkeywords: + patch
stage: patch review
pull_requests: + pull_request15362
2019-09-05 07:13:58xtreaksetnosy: + vinay.sajip, xtreak

messages: + msg351183
versions: - Python 3.5, Python 3.6
2019-09-05 01:23:02wuckcreate