From 84235e0834e57551028329723f4510e1dbe7bc11 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Thu, 17 May 2012 15:44:31 +0200 Subject: cython: Do not override final methods as comply to Cython >= 0.16 strict check --- cython/afc.pxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cython/afc.pxi') diff --git a/cython/afc.pxi b/cython/afc.pxi index cf72b69..0383471 100644 --- a/cython/afc.pxi +++ b/cython/afc.pxi @@ -162,7 +162,7 @@ cdef class AfcClient(BaseService): err = afc_client_free(self._c_client) self.handle_error(err) - cdef inline BaseError _error(self, int16_t ret): + cdef BaseError _error(self, int16_t ret): return AfcError(ret) cpdef list get_device_info(self): -- cgit v1.1-32-gdbae