Commit 24180c84 authored by Matti Picus's avatar Matti Picus Committed by Stefan Behnel

TEST: add cpp attribute example from docs, add CYTHON_PROJECT_DIR for tests (GH-2970)

parent af997e97
......@@ -2012,6 +2012,10 @@ def flush_and_terminate(status):
def main():
global DISTDIR, WITH_CYTHON
# Set an environment variable to the top directory
os.environ['CYTHON_PROJECT_DIR'] = os.path.abspath(os.path.dirname(__file__))
DISTDIR = os.path.join(os.getcwd(), os.path.dirname(sys.argv[0]))
from Cython.Compiler import DebugFlags
......
# tag: cpp
PYTHON setup.py build_ext --inplace
PYTHON -c "import runner"
######## setup.py ########
from Cython.Build.Dependencies import cythonize
from distutils.core import setup
import os
example_dir = os.path.abspath(os.path.join(os.environ['CYTHON_PROJECT_DIR'],
'docs/examples/userguide/wrapping_CPlusPlus'))
ext_modules= cythonize(os.path.join(example_dir, "rect_with_attributes.pyx"),
include_path=[example_dir])
setup(ext_modules=ext_modules)
######## runner.py ########
import rect_with_attributes
x0, y0, x1, y1 = 1, 2, 3, 4
rect_obj = rect_with_attributes.PyRectangle(x0, y0, x1, y1)
assert rect_obj.x0 == x0
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment