waf

FORK: waf with some random patches
git clone https://git.neptards.moe/neptards/waf.git
Log | Files | Refs | README

cy_cxxtest.pyx (223B)


      1 from cpython.version cimport PY_VERSION
      2 cimport cy_cxxtest
      3 
      4 def pyhello():
      5     cy_cxxtest.hello()
      6     print("Compiled with python version %s" % PY_VERSION)
      7 
      8 cdef public api void cy_hello():
      9     print("hello cython-world!")