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: operator documentation mixup
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: docs@python, ezio.melotti, mjpieters, python-dev
Priority: normal Keywords: patch

Created on 2013-05-10 16:26 by mjpieters, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
operator_documentation_fix.patch mjpieters, 2013-05-10 16:26
Messages (3)
msg188846 - (view) Author: Martijn Pieters (mjpieters) * Date: 2013-05-10 16:26
Rev 83684 (http://hg.python.org/cpython/rev/5885c02120f0) managed to move the `attrgetter()` `versionadded` and `versionchanged` notes down to the `itemgetter()` documentation instead, by moving the `itemgetter()` signature *up* above these lines.

Now the docs claim `itemgetter()` gained support for dotted attributes in version 2.6, which makes no sense, and there is another set of added and changed notes lower down in the same section.

This patch puts the `itemgetter()` signature back in the correct location.
msg188849 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-05-10 16:57
New changeset 9c93a631e95a by Ezio Melotti in branch '2.7':
#17949: fix merge glitch in itemgetter signature.  Patch by Martijn Pieters.
http://hg.python.org/cpython/rev/9c93a631e95a
msg188850 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-05-10 16:57
Fixed, thanks for the report and the patch!
History
Date User Action Args
2022-04-11 14:57:45adminsetgithub: 62149
2013-05-10 16:57:50ezio.melottisetstatus: open -> closed

type: enhancement
assignee: docs@python -> ezio.melotti

nosy: + ezio.melotti
messages: + msg188850
resolution: fixed
stage: resolved
2013-05-10 16:57:16python-devsetnosy: + python-dev
messages: + msg188849
2013-05-10 16:26:22mjpieterscreate