File size: 300 Bytes
948620a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
cimport cython
cdef long maxint
@cython.final
cdef class TransitionMap:
cdef list map
cdef dict special
cpdef add(self, event, new_state)
cpdef add_set(self, event, new_set)
cpdef iteritems(self)
cdef Py_ssize_t split(self, long code)
cdef set get_special(self, event)
|