ascv / HyperLogLog

Fast HyperLogLog for Python.
MIT License
99 stars 19 forks source link

Use Py_ssize_t instead of uint32_t. #39

Closed ilya-lt closed 4 years ago

ilya-lt commented 4 years ago

Do this to avoid warnings from python starting with python3.8. See note at: https://docs.python.org/3.8/c-api/arg.html.

ilya-lt commented 4 years ago

thanks for your work on the project, just a small change to avoid warnings and possible problems after python3.8.

daTokenizer commented 4 years ago

I'm not one of the maintainers, but this change seems good to me (as far as complying with py3.8 documentation)