[EMAIL PROTECTED] wrote: > No doubt you're right but common sense dictates that membership testing > would test identity not equality.
what does "common sense" have to say about this case: >>> L = ("aa", "bb", "cc", "dd") >>> S = "a" + "a" >>> L ('aa', 'bb', 'cc', 'dd') >>> S 'aa' >>> S in L # True or False ? </F> -- http://mail.python.org/mailman/listinfo/python-list