diff options
Diffstat (limited to 'test cases/python3/3 cython/libdir/storer.pyx')
-rw-r--r-- | test cases/python3/3 cython/libdir/storer.pyx | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/test cases/python3/3 cython/libdir/storer.pyx b/test cases/python3/3 cython/libdir/storer.pyx deleted file mode 100644 index ed551dc5f..000000000 --- a/test cases/python3/3 cython/libdir/storer.pyx +++ /dev/null @@ -1,16 +0,0 @@ -cimport cstorer - -cdef class Storer: - cdef cstorer.Storer* _c_storer - - def __cinit__(self): - self._c_storer = cstorer.storer_new() - - def __dealloc__(self): - cstorer.storer_destroy(self._c_storer) - - cpdef int get_value(self): - return cstorer.storer_get_value(self._c_storer) - - cpdef set_value(self, int value): - cstorer.storer_set_value(self._c_storer, value) |