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 ethan.furman
Recipients arigo, ethan.furman, nikratio, rhettinger
Date 2013-10-30.19:02:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383159767.89.0.031287512613.issue19414@psf.upfronthosting.co.za>
In-reply-to
Content
Nikolaus, in reply to your question about "more to remember":

Even though I may not use it myself, if it is allowed then at some point I will see it in code; when that happens the sequence of events is something like:

  1) hey, that won't work
  2) oh, wait, is this an OrderedDict?
  3) (yes) oh, okay, it's fine then <done>
  3) (no) hmm, well, it was supposed to be, but a regular dict was
     passed in
  4) okay, we either fix the code here to handle regular dicts (use
     list idiom); or
     go back to calling code and make this an OrderedDict

I see that as a lot of extra effort for a non-necessary change.
History
Date User Action Args
2013-10-30 19:02:47ethan.furmansetrecipients: + ethan.furman, arigo, rhettinger, nikratio
2013-10-30 19:02:47ethan.furmansetmessageid: <1383159767.89.0.031287512613.issue19414@psf.upfronthosting.co.za>
2013-10-30 19:02:47ethan.furmanlinkissue19414 messages
2013-10-30 19:02:47ethan.furmancreate