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 tseaver
Recipients georg.brandl, michael.foord, pitrou, rhettinger, tseaver
Date 2010-11-08.17:20:15
SpamBayes Score 0.15892693
Marked as misclassified No
Message-id <1289236821.76.0.871274702227.issue10360@psf.upfronthosting.co.za>
In-reply-to
Content
WeakKeyDictionary's __contains__:

    def __contains__(self, key):
        try:
            wr = ref(key)
        except TypeError:
            return 0
        return wr in self.data
History
Date User Action Args
2010-11-08 17:20:21tseaversetrecipients: + tseaver, georg.brandl, rhettinger, pitrou, michael.foord
2010-11-08 17:20:21tseaversetmessageid: <1289236821.76.0.871274702227.issue10360@psf.upfronthosting.co.za>
2010-11-08 17:20:15tseaverlinkissue10360 messages
2010-11-08 17:20:15tseavercreate