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 in OrderedDict docs
Type: Stage: resolved
Components: Documentation Versions: Python 3.2, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: ThiefMaster, asvetlov, docs@python, mikehoy, python-dev
Priority: normal Keywords: patch

Created on 2012-08-30 21:29 by ThiefMaster, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
typo-ordered-dict2.7.diff mikehoy, 2012-08-31 09:50 review
typo-ordered-dict3.3.diff mikehoy, 2012-08-31 09:50 review
Messages (4)
msg169493 - (view) Author: ThiefMaster (ThiefMaster) Date: 2012-08-30 21:29
"It is also straight-forward to create an ordered dictionary variant that the remembers the order the keys were last inserted."

The first "the" doesn't belong there.
msg169512 - (view) Author: Mike Hoy (mikehoy) * Date: 2012-08-31 09:50
I added two patches one for 2.7 and one for 3.3. Please advise if this is the correct way to handle this.
msg169522 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-08-31 10:55
New changeset 69952b5599b5 by Andrew Svetlov in branch '2.7':
Issue #15825: fix typo in OrderedDict docs.
http://hg.python.org/cpython/rev/69952b5599b5

New changeset 8877d25119ef by Andrew Svetlov in branch '3.2':
Issue #15825: fix typo in OrderedDict docs.
http://hg.python.org/cpython/rev/8877d25119ef

New changeset ef80ce83eab1 by Andrew Svetlov in branch 'default':
Issue #15825: fix typo in OrderedDict docs.
http://hg.python.org/cpython/rev/ef80ce83eab1
msg169523 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2012-08-31 10:58
Thanks.
History
Date User Action Args
2022-04-11 14:57:35adminsetgithub: 60029
2012-08-31 10:58:59asvetlovsetstatus: open -> closed

nosy: + asvetlov
messages: + msg169523

resolution: fixed
stage: resolved
2012-08-31 10:55:36python-devsetnosy: + python-dev
messages: + msg169522
2012-08-31 09:50:38mikehoysetfiles: + typo-ordered-dict3.3.diff
2012-08-31 09:50:28mikehoysetfiles: + typo-ordered-dict2.7.diff

nosy: + mikehoy
messages: + msg169512

keywords: + patch
2012-08-30 21:29:18ThiefMastercreate