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 barry, christian.heimes, gvanrossum, mark.dickinson, mikecurtis, rhettinger
Date 2008-11-12.01:22:04
SpamBayes Score 0.0041559767
Marked as misclassified No
Message-id <1226452926.91.0.942054316293.issue4296@psf.upfronthosting.co.za>
In-reply-to
Content
Mark, the patch looks good.  Thanks.  Before committing, please add one
other test that verifies the relationship between "in" in membership
tests and "in" in a for-loop:


for constructor in list, tuple, dict.fromkeys, set, collections.deque:
    container = constructor([float('nan'), 1, None, 'abc'])
    for elem in container :
         self.assert_(elem in container)
History
Date User Action Args
2008-11-12 01:22:07rhettingersetrecipients: + rhettinger, gvanrossum, barry, mark.dickinson, christian.heimes, mikecurtis
2008-11-12 01:22:06rhettingersetmessageid: <1226452926.91.0.942054316293.issue4296@psf.upfronthosting.co.za>
2008-11-12 01:22:05rhettingerlinkissue4296 messages
2008-11-12 01:22:04rhettingercreate