def __cinit__()

in src/h3/_cy/memory.pyx [0:0]


    def __cinit__(self, size_t n):
        self.n = n
        self.ptr = <H3int*> h3_calloc(self.n, sizeof(H3int))

        if not self.ptr:
            raise MemoryError()