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.

Author georg.brandl
Recipients aronacher, georg.brandl, rhettinger
Date 2009-03-01.12:48:25
SpamBayes Score 0.058919214
Marked as misclassified No
Message-id <1235911708.01.0.090442503792.issue5397@psf.upfronthosting.co.za>
In-reply-to
Content
Doc nits:

* "items are returned in the order they were first added": it should be
made clear that it matters when the *key* was first added
* "An *OrderedDict* remembers order that entries were inserted": misses
a word somewhere?
* "OrderDict" should be "OrderedDict"
* "compare their ordered :attr:`items` list": ... lists?

Implementation nits:

* "raise TypeError('expected at 1 argument, got %d', len(args))"
  should read "at most" and use "%" instead of ","
* "raise KeyError" in popitem(): should it get a message?
* eval()ing the repr() will not construct the dict in the same order
History
Date User Action Args
2009-03-01 12:48:28georg.brandlsetrecipients: + georg.brandl, rhettinger, aronacher
2009-03-01 12:48:28georg.brandlsetmessageid: <1235911708.01.0.090442503792.issue5397@psf.upfronthosting.co.za>
2009-03-01 12:48:26georg.brandllinkissue5397 messages
2009-03-01 12:48:25georg.brandlcreate