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