diff options
author | Martin Szulecki | 2012-05-17 15:44:31 +0200 |
---|---|---|
committer | Martin Szulecki | 2012-05-17 15:44:31 +0200 |
commit | 84235e0834e57551028329723f4510e1dbe7bc11 (patch) | |
tree | 5cc9820c8954cec6bfc4758b6b8474932087dfdd /cython/afc.pxi | |
parent | 70dfe8ad1766990386f1db04bbe5a4826bcde4e5 (diff) | |
download | libimobiledevice-84235e0834e57551028329723f4510e1dbe7bc11.tar.gz libimobiledevice-84235e0834e57551028329723f4510e1dbe7bc11.tar.bz2 |
cython: Do not override final methods as comply to Cython >= 0.16 strict check
Diffstat (limited to 'cython/afc.pxi')
-rw-r--r-- | cython/afc.pxi | 2 |
1 files changed, 1 insertions, 1 deletions
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): |