summaryrefslogtreecommitdiff
path: root/tests/run/cython2_bytes.pyx
blob: 84eec1cd5273f8803d89169abf8250f8ef09e610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- coding: utf-8 -*-
# cython: language_level=2

b = b'abcüöä \x12'

cdef char* cs = 'abcüöä \x12'

def compare_cs():
    """
    >>> b == compare_cs()
    True
    """
    return cs