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 christian.barcenas
Recipients christian.barcenas, docs@python
Date 2015-07-18.09:07:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1437210449.62.0.937797780613.issue24659@psf.upfronthosting.co.za>
In-reply-to
Content
Should have clarified that the specific issue that is outlined in #5945 is that PyMapping_Check returns 1 on sequences (e.g. lists), which would mean something like x = [('one', 1), ('two', 2)]; dict(x) would fail in 3.x because x would be incorrectly evaluated as a mapping rather than as an iterable.
History
Date User Action Args
2015-07-18 09:07:29christian.barcenassetrecipients: + christian.barcenas, docs@python
2015-07-18 09:07:29christian.barcenassetmessageid: <1437210449.62.0.937797780613.issue24659@psf.upfronthosting.co.za>
2015-07-18 09:07:29christian.barcenaslinkissue24659 messages
2015-07-18 09:07:29christian.barcenascreate