summaryrefslogtreecommitdiff
path: root/tests/run/charcomparisonT412.pyx
blob: 97afb4769374cb0c40b85bba43b44911dfbfdab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# ticket: t412

def f():
    """
    >>> f()
    True
    True
    """

    cdef char a
    a = 62
    print (a == '>')
    print (a == <char>'>')