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 gvanrossum
Recipients benjamin.peterson, georg.brandl, gvanrossum, jmillikin, pitrou, rhettinger
Date 2011-01-04.19:01:43
SpamBayes Score 7.808903e-06
Marked as misclassified No
Message-id <1294167705.93.0.201071629359.issue5945@psf.upfronthosting.co.za>
In-reply-to
Content
It looks like PyMapping_Check() already checks for the presence of a fairly arbitrary special operation (mp_subscript).  It sounds fine to replace that with a check for the presence of a keys() or items() method (I'm not sure which one is more representative). I wish the check can be done fast -- but I fear that it'll involve a dict lookup.  So be it.
History
Date User Action Args
2011-01-04 19:01:46gvanrossumsetrecipients: + gvanrossum, georg.brandl, rhettinger, pitrou, benjamin.peterson, jmillikin
2011-01-04 19:01:45gvanrossumsetmessageid: <1294167705.93.0.201071629359.issue5945@psf.upfronthosting.co.za>
2011-01-04 19:01:43gvanrossumlinkissue5945 messages
2011-01-04 19:01:43gvanrossumcreate