From af06ff22149191c056804e7fec9c1a6880a06872 Mon Sep 17 00:00:00 2001 From: Bryan Forbes Date: Wed, 31 Mar 2010 15:01:50 -0500 Subject: Fixed some class names and inheritance chains. --- cython/imobiledevice.pyx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'cython/imobiledevice.pyx') diff --git a/cython/imobiledevice.pyx b/cython/imobiledevice.pyx index b7ec87b..dc0fb88 100644 --- a/cython/imobiledevice.pyx +++ b/cython/imobiledevice.pyx @@ -70,10 +70,12 @@ cdef class iDeviceError(BaseError): cpdef set_debug_level(int level): idevice_set_debug_level(level) -cdef class iDeviceEvent: pass +cdef class iDeviceEvent: + def __init__(self, *args, **kwargs): + raise TypeError("iDeviceEvent cannot be instantiated") cdef void idevice_event_cb(const_idevice_event_t c_event, void *user_data): - cdef iDeviceEvent event = iDeviceEvent() + cdef iDeviceEvent event = iDeviceEvent.__new__(iDeviceEvent) event._c_event = c_event (user_data)(event) -- cgit v1.1-32-gdbae