summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/unsupported-membership-test/good.py
blob: 96b96d4d566855d9bec0ea627615223f4301ba31 (plain)
1
2
3
4
5
6
7
class Fruit:
    FRUITS = ["apple", "orange"]
    def __contains__(self, name):
        return name in self.FRUITS


apple = "apple" in Fruit()