Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / pyximport / pyximport_basic.srctree
Size: Mime:

PYTHON -c "import basic_test; basic_test.test()"

######## basic_test.py ########

import os.path
import pyximport

pyximport.install(build_dir=os.path.join(os.path.dirname(__file__), "TEST_TMP"))

def test():
    import mymodule
    assert mymodule.test_string == "TEST"
    assert not mymodule.__file__.rstrip('oc').endswith('.py'), mymodule.__file__

######## mymodule.pyx ########

test_string = "TEST"