waf/playground/cython/src/cy_ctest.pyx

8 lines
178 B
Cython

from cpython.version cimport PY_VERSION
cimport cy_ctest
#cimport commented_import
def pyhello():
cy_ctest.hello()
print("Compiled with python version %s" % PY_VERSION)