Tagged Questions
3
votes
1answer
603 views
Emulating membership-test in Python: delegating __contains__ to contained-object correctly
I am used to that Python allows some neat tricks to delegate functionality to other objects. One example is delegation to contained objects.
But it seams, that I don't have luck, when I want to ...