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 SilentGhost
Recipients SilentGhost, justanr, rhettinger
Date 2015-02-01.18:27:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1422815221.97.0.227484494426.issue23372@psf.upfronthosting.co.za>
In-reply-to
Content
Raymond, but Alec talks about 

  defaultdict.fromkeys(constants, factory=list)

as opposed to current solution

  d = defaultdict.fromkeys(constants)
  d.default_factory = list
  for i in d:
      d[i] = []

I wouldn't think that the dict.fromkeys should be affected by this issue.
History
Date User Action Args
2015-02-01 18:27:01SilentGhostsetrecipients: + SilentGhost, rhettinger, justanr
2015-02-01 18:27:01SilentGhostsetmessageid: <1422815221.97.0.227484494426.issue23372@psf.upfronthosting.co.za>
2015-02-01 18:27:01SilentGhostlinkissue23372 messages
2015-02-01 18:27:01SilentGhostcreate