From 7b4cb7fb2f1b1ed29f3bc97a9bcae5fc2a89fe95 Mon Sep 17 00:00:00 2001 From: Bryan Forbes Date: Thu, 18 Mar 2010 20:50:26 -0500 Subject: Added afc.pxi. More errors handled. Changed error codes to enums in cython defs. --- cython/property_list_client.pxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cython/property_list_client.pxi') 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): cdef plist.Node n = node self.handle_error(self._send(n._c_node)) - cpdef plist.Node receive(self): + cpdef object receive(self): cdef plist.plist_t c_node = NULL self.handle_error(self._receive(&c_node)) -- cgit v1.1-32-gdbae