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 entry in WRAPPER_ASSIGNMENTS in update_wrapper's doc
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, python-dev, xiang.zhang
Priority: normal Keywords: patch

Created on 2016-03-23 03:35 by xiang.zhang, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
functools_doc.patch xiang.zhang, 2016-03-23 03:35 review
Messages (3)
msg262237 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2016-03-23 03:35
WRAPPER_ASSIGNMENTS now contains __qualname__ but the documentation doesn't mention it.
msg263674 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-04-18 18:19
New changeset 11d8f5d1968d by Berker Peksag in branch '3.5':
Issue #26615: Add missing __qualname__ entry to functools.update_wrapper() docs
https://hg.python.org/cpython/rev/11d8f5d1968d

New changeset ee9921b29fd8 by Berker Peksag in branch 'default':
Issue #26615: Add missing __qualname__ entry to functools.update_wrapper() docs
https://hg.python.org/cpython/rev/ee9921b29fd8
msg263675 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-04-18 18:21
__qualname__ was added to WRAPPER_ASSIGNMENTS in 963e98f5ad31 (issue 13544).

Thanks for the patch!
History
Date User Action Args
2022-04-11 14:58:28adminsetgithub: 70802
2016-04-18 18:21:42berker.peksagsetstatus: open -> closed

type: behavior
versions: + Python 3.5
nosy: + berker.peksag

messages: + msg263675
resolution: fixed
stage: resolved
2016-04-18 18:19:51python-devsetnosy: + python-dev
messages: + msg263674
2016-03-23 03:35:41xiang.zhangcreate