12 lines
127 B
Cython
12 lines
127 B
Cython
|
|
||
|
import cython
|
||
|
|
||
|
|
||
|
cdef class Signal:
|
||
|
|
||
|
cdef list _handlers
|
||
|
|
||
|
cdef class SignalRegistrationInterface:
|
||
|
|
||
|
cdef list _handlers
|