summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/clibraries/queue2.pyx
blob: 5dca04c22d218fc737adf8e60c88381dcb229528 (plain)
1
2
3
4
5
6
7
8
9
10
cimport cqueue


cdef class Queue:
    cdef cqueue.Queue* _c_queue

    def __cinit__(self):
        self._c_queue = cqueue.queue_new()
        if self._c_queue is NULL:
            raise MemoryError()