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: Missing docs for LoggerAdapter manager and name property
Type: Stage: resolved
Components: Documentation Versions: Python 3.10, Python 3.9, Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, miss-islington, vinay.sajip, yoavp10
Priority: normal Keywords: patch

Created on 2021-02-10 08:37 by yoavp10, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 27347 merged vinay.sajip, 2021-07-25 11:42
PR 27353 merged miss-islington, 2021-07-25 17:08
PR 27354 closed miss-islington, 2021-07-25 17:08
PR 27355 merged miss-islington, 2021-07-25 17:08
Messages (4)
msg386762 - (view) Author: Yoav Palti (yoavp10) Date: 2021-02-10 08:37
I found the following issue which added manager and name properties to logging.LoggerAdapter on version 3.6:
https://bugs.python.org/issue31457
However the current docs don't have them documented:
https://docs.python.org/3.6/library/logging.html#logging.LoggerAdapter
msg398186 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2021-07-25 16:36
New changeset 50b72768ffe6413424dc4eba916dd1ff89a2fe7b by Vinay Sajip in branch 'main':
bpo-43184: Add information about added attribute and method. (GH-27347)
https://github.com/python/cpython/commit/50b72768ffe6413424dc4eba916dd1ff89a2fe7b
msg398191 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2021-07-25 19:30
New changeset ce2033694ef4bf4c304e5c98d19fdeb684cd961b by Miss Islington (bot) in branch '3.9':
[3.9] bpo-43184: Add information about added attribute and method. (GH-27347) (GH-27353)
https://github.com/python/cpython/commit/ce2033694ef4bf4c304e5c98d19fdeb684cd961b
msg398192 - (view) Author: Vinay Sajip (vinay.sajip) * (Python committer) Date: 2021-07-25 19:30
New changeset 59058a65a27de434a79adb749637b74a7fe418ba by Miss Islington (bot) in branch '3.10':
[3.10] bpo-43184: Add information about added attribute and method. (GH-27347) (GH-27355)
https://github.com/python/cpython/commit/59058a65a27de434a79adb749637b74a7fe418ba
History
Date User Action Args
2022-04-11 14:59:41adminsetgithub: 87350
2021-07-28 10:48:50vinay.sajipsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-07-25 19:30:59vinay.sajipsetmessages: + msg398192
2021-07-25 19:30:27vinay.sajipsetmessages: + msg398191
2021-07-25 17:08:43miss-islingtonsetpull_requests: + pull_request25896
2021-07-25 17:08:38miss-islingtonsetpull_requests: + pull_request25895
2021-07-25 17:08:33miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request25894
2021-07-25 16:36:38vinay.sajipsetmessages: + msg398186
2021-07-25 11:42:22vinay.sajipsetkeywords: + patch
stage: patch review
pull_requests: + pull_request25888
2021-02-10 08:46:43xtreaksetnosy: + vinay.sajip
2021-02-10 08:37:11yoavp10create