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

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

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

import os.path
import pyximport

pyximport.DEBUG_IMPORT = True

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"