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 ncoghlan
Recipients docs@python, ncoghlan
Date 2013-07-15.02:11:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1373854272.6.0.0142348360978.issue18456@psf.upfronthosting.co.za>
In-reply-to
Content
The docs from PyDict_Update (http://docs.python.org/3/c-api/dict.html#PyDict_Update) claim it is equivalent to the Python level dict.update (http://docs.python.org/3/library/stdtypes#dict.update)

This isn't accurate - unlike dict.update, PyDict_Update doesn't fall back to the iterating over a sequence of key value pairs if the second argument has no "keys" attribute.
History
Date User Action Args
2013-07-15 02:11:12ncoghlansetrecipients: + ncoghlan, docs@python
2013-07-15 02:11:12ncoghlansetmessageid: <1373854272.6.0.0142348360978.issue18456@psf.upfronthosting.co.za>
2013-07-15 02:11:12ncoghlanlinkissue18456 messages
2013-07-15 02:11:11ncoghlancreate