You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 20, 2022. It is now read-only.
It looks like there is no pure Python implementation of the math module -- even PyPy calls out to C for this.
This is a big task, and I've already started going down this rabbit hole, by basically translating the BSD libc math library sources into Python. It is tedious, and will be slower than a native implementation, but should be self-contained.
It looks like there is no pure Python implementation of the
mathmodule -- even PyPy calls out to C for this.This is a big task, and I've already started going down this rabbit hole, by basically translating the BSD
libcmath library sources into Python. It is tedious, and will be slower than a native implementation, but should be self-contained.