7 lines
157 B
Cython
7 lines
157 B
Cython
#cython: language_level=3
|
|
|
|
|
|
cdef bytes str2bytes(str string)
|
|
cdef str bytes2str(bytes string)
|
|
cdef bytes tobytes(object string)
|
|
cdef str tostr(object string) |