summaryrefslogtreecommitdiff
path: root/tests/pyximport/pyximport_namespace.srctree
blob: 5547bfdf83c3b119cf1439ff8adb95d970086d98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

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 nsmod.mymodule
    assert nsmod.mymodule.test_string == "TEST"
    assert not nsmod.mymodule.__file__.rstrip('oc').endswith('.py'), nsmod.mymodule.__file__

######## nsmod/mymodule.pyx ########

test_string = "TEST"