diff options
author | Bryan Forbes | 2010-04-19 12:39:21 -0500 |
---|---|---|
committer | Martin Szulecki | 2012-03-20 23:25:55 +0100 |
commit | 49fc86155ca2ec847239f7969ac190dfe7aa4920 (patch) | |
tree | f8333e0b0f63a6797bbe8e839b094bb800af445d /cython/property_list_client.pxi | |
parent | 6f40114fd26dd0bfb7fcbe4067cc7f4f3eec428a (diff) | |
download | libimobiledevice-49fc86155ca2ec847239f7969ac190dfe7aa4920.tar.gz libimobiledevice-49fc86155ca2ec847239f7969ac190dfe7aa4920.tar.bz2 |
Removed property_list_client.pxi.
Added notification strings.
Diffstat (limited to 'cython/property_list_client.pxi')
-rw-r--r-- | cython/property_list_client.pxi | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/cython/property_list_client.pxi b/cython/property_list_client.pxi deleted file mode 100644 index 718b07f..0000000 --- a/cython/property_list_client.pxi +++ /dev/null @@ -1,20 +0,0 @@ -cdef class PropertyListClient(Base): - cpdef send(self, plist.Node node): - self.handle_error(self._send(node._c_node)) - - cpdef object receive(self): - cdef: - plist.plist_t c_node = NULL - int16_t err - err = self._receive(&c_node) - try: - self.handle_error(err) - except BaseError, e: - if c_node != NULL: - plist.plist_free(c_node) - raise - - return plist.plist_t_to_node(c_node) - - cdef inline int16_t _send(self, plist.plist_t node): pass - cdef inline int16_t _receive(self, plist.plist_t* c_node): pass |