lemire / fastrand

Fast random number generation in an interval in Python: Up to 10x faster than random.randint.
Apache License 2.0
88 stars 13 forks source link

Defined PyLong_AsUnsignedLongLongMask for Python3 #8

Closed GPaolo closed 5 years ago

GPaolo commented 5 years ago

PyLong_AsUnsignedLongLongMask was not defined so fastrand did not work with Python3.5 Now it seems to work without any issue.

lemire commented 5 years ago

Thanks. Great.