h3-py
h3-py copied to clipboard
Use bint instead of bool for Cython functions
We've been using from cpython cimport bool for Cython functions that return a boolean value, but this refers to the Python object, which is probably slowing these functions down.
Instead, we should probably be using bint.