We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e86cb75 commit 4574a94Copy full SHA for 4574a94
tests/test_files/.gitignore
@@ -20,5 +20,4 @@ number_conv.pyx
20
inherited.pyx
21
itertest.pyx
22
int_container_class.pyx
23
-addons/*.pyx
24
numpy_vector/*.pyx
tests/test_files/addons/B.pyx
@@ -0,0 +1,10 @@
1
+from extra cimport M_PI
2
+
3
4
+ def super_get(self, int i):
5
+ cdef _Holder[int] ih
6
+ ih.set(i+1)
7
+ return ih.get()
8
9
+ def get_pi(self):
10
+ return M_PI
tests/test_files/addons/C.pyx
@@ -0,0 +1,4 @@
+cdef class CC:
+ cc = 3
0 commit comments