From: Stefan Behnel Date: Tue, 22 Apr 2008 19:55:46 +0000 (+0200) Subject: include test case X-Git-Tag: 0.9.6.14~20^2~20 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b87450e26c32922513da8188ca86bd399d2230bb;p=cython.git include test case --- diff --git a/tests/run/include.pyx b/tests/run/include.pyx new file mode 100644 index 00000000..c350a74b --- /dev/null +++ b/tests/run/include.pyx @@ -0,0 +1,8 @@ +__doc__ = """ + >>> D + 2 +""" + +D = 1 + +include "testinclude.pxi" diff --git a/tests/run/testinclude.pxi b/tests/run/testinclude.pxi new file mode 100644 index 00000000..9870e682 --- /dev/null +++ b/tests/run/testinclude.pxi @@ -0,0 +1 @@ +D = 2