h3-py icon indicating copy to clipboard operation
h3-py copied to clipboard

Use bint instead of bool for Cython functions

Open ajfriend opened this issue 3 years ago • 0 comments

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.

ajfriend avatar Jul 01 '22 01:07 ajfriend