summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/string/naive_decode.pyx
blob: b3c44d9afd1a5576aefcc76ec27a62638b767d22 (plain)
1
2
3
4
from c_func cimport c_call_returning_a_c_string

cdef char* some_c_string = c_call_returning_a_c_string()
ustring = some_c_string.decode('UTF-8')