summaryrefslogtreecommitdiff
path: root/tests/run/rodriguez_1.pyx
blob: 5052c0e5360cc14e7d645b777f480afc7796f125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
__doc__ = u"""
    >>> b = B()
    >>> sorted(b.t.items())
    [(1, ((1, 2, 3),)), (2, (1, 2, 3))]
"""

class B:
    def __init__(self):
        self.t = {
            1 : (
                (1, 2, 3)
                ,
                )

            , 2 : ( 1, 2, 3)
            }