summaryrefslogtreecommitdiff
path: root/tests/run/extlen.pyx
blob: 3d9d57d24ef36359332a5814613e2e83a355ac3b (plain)
1
2
3
4
5
6
7
8
9
__doc__ = u"""
    >>> len(Spam())
    0
"""

cdef class Spam:

    def __len__(self):
        return 0