summaryrefslogtreecommitdiffstats
path: root/cython/property_list_client.pxi
diff options
context:
space:
mode:
authorGravatar Bryan Forbes2010-03-18 20:50:26 -0500
committerGravatar Martin Szulecki2012-03-20 23:25:54 +0100
commit7b4cb7fb2f1b1ed29f3bc97a9bcae5fc2a89fe95 (patch)
tree4268abec171becef6befdfc5bd0a1ffc46d1962a /cython/property_list_client.pxi
parent68c63cc1382326e7f0cb4e6bd863427f9069ca05 (diff)
downloadlibimobiledevice-7b4cb7fb2f1b1ed29f3bc97a9bcae5fc2a89fe95.tar.gz
libimobiledevice-7b4cb7fb2f1b1ed29f3bc97a9bcae5fc2a89fe95.tar.bz2
Added afc.pxi.
More errors handled. Changed error codes to enums in cython defs.
Diffstat (limited to 'cython/property_list_client.pxi')
-rw-r--r--cython/property_list_client.pxi2
1 files changed, 1 insertions, 1 deletions
diff --git a/cython/property_list_client.pxi b/cython/property_list_client.pxi
index 2689658..874f2b5 100644
--- a/cython/property_list_client.pxi
+++ b/cython/property_list_client.pxi
@@ -3,7 +3,7 @@ cdef class PropertyListClient(Base):
3 cdef plist.Node n = node 3 cdef plist.Node n = node
4 self.handle_error(self._send(n._c_node)) 4 self.handle_error(self._send(n._c_node))
5 5
6 cpdef plist.Node receive(self): 6 cpdef object receive(self):
7 cdef plist.plist_t c_node = NULL 7 cdef plist.plist_t c_node = NULL
8 self.handle_error(self._receive(&c_node)) 8 self.handle_error(self._receive(&c_node))
9 9