Add link to CPython math module

This commit is contained in:
Alec Delaney 2022-05-03 13:57:22 -04:00 committed by GitHub
parent 2457b2bdf4
commit 664a92c2df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -41,7 +41,15 @@
//| """mathematical functions
//|
//| The `math` module provides some basic mathematical functions for
//| working with floating-point numbers."""
//| working with floating-point numbers.
//|
//| This library is a subset of the CPython library. All code using this
//| library should function in CPython, but not necessarily the other way
//| around. For more information about the `math` module, see the
//| CPython documentation:
//|
//| https://docs.python.org/3/library/math.html
//| """
//|
STATIC NORETURN void math_error(void) {