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 rhettinger
Recipients belopolsky, rhettinger
Date 2016-07-19.23:13:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1468969998.85.0.300298710614.issue27576@psf.upfronthosting.co.za>
In-reply-to
Content
This does need to be fixed.  

FWIW, here is the relevant docstring from MutableMapping:
        ''' D.update([E, ]**F) -> None.  Update D from mapping/iterable E and F.
            If E present and has a .keys() method, does:     for k in E: D[k] = E[k]
            If E present and lacks .keys() method, does:     for (k, v) in E: D[k] = v
            In either case, this is followed by: for k, v in F.items(): D[k] = v
        '''
History
Date User Action Args
2016-07-19 23:13:18rhettingersetrecipients: + rhettinger, belopolsky
2016-07-19 23:13:18rhettingersetmessageid: <1468969998.85.0.300298710614.issue27576@psf.upfronthosting.co.za>
2016-07-19 23:13:18rhettingerlinkissue27576 messages
2016-07-19 23:13:18rhettingercreate