Commit d9d8ce44 authored by gsamain's avatar gsamain Committed by Xavier Thompson

amend legacy test

parent d8877f47
......@@ -49,21 +49,21 @@ cdef cypclass SomeMemory:
int a;
double b;
void __init__(int a, double b):
void __init__(self, int a, double b):
this.a = a
this.b = b
void __dealloc__():
void __dealloc__(self):
pass
void foo1():
void foo1(self):
"""
It is possible to define native C/Cython methods
that release the GIL (cool...)
"""
this.a += 3
void foo2():
void foo2(self):
"""
It is possible to define native C/Cython methods
that release the GIL (cool...)
......
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