1__doc__ = u"""
2    >>> t = TEST()
3    >>> 1 in t
4    True
5"""
6
7cdef class TEST:
8    def __contains__(self, x):
9        return 42
10