Skip to content

Commit 664a92c

Browse files
authored
Add link to CPython math module
1 parent 2457b2b commit 664a92c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

shared-bindings/math/__init__.c

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,15 @@
4141
//| """mathematical functions
4242
//|
4343
//| The `math` module provides some basic mathematical functions for
44-
//| working with floating-point numbers."""
44+
//| working with floating-point numbers.
45+
//|
46+
//| This library is a subset of the CPython library. All code using this
47+
//| library should function in CPython, but not necessarily the other way
48+
//| around. For more information about the `math` module, see the
49+
//| CPython documentation:
50+
//|
51+
//| https://docs.python.org/3/library/math.html
52+
//| """
4553
//|
4654

4755
STATIC NORETURN void math_error(void) {

0 commit comments

Comments
 (0)