summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/clibraries/queue.pyx
blob: 654c07b8d9d088bf120ebdc12c32e4206473abde (plain)
1
2
3
4
5
6
7
8
cimport cqueue


cdef class Queue:
    cdef cqueue.Queue* _c_queue

    def __cinit__(self):
        self._c_queue = cqueue.queue_new()