diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-07-02 15:37:31 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-07-02 15:37:31 +0300 |
commit | 465d84b7e72c9fe4a8907ee539f736ff576d9dd6 (patch) | |
tree | 40ca414532037f207b5a8173fb5839d2afac56c6 /docs/library/cmath.rst | |
parent | ebce7984c66b4d977f4540506e243cf65a80db2f (diff) | |
download | micropython-465d84b7e72c9fe4a8907ee539f736ff576d9dd6.tar.gz micropython-465d84b7e72c9fe4a8907ee539f736ff576d9dd6.zip |
docs/library: Add CPython docs xref to each pertinent module.
Cross-reference text/link is implemented as RST substitution, so easy to
consistently.
Diffstat (limited to 'docs/library/cmath.rst')
-rw-r--r-- | docs/library/cmath.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/library/cmath.rst b/docs/library/cmath.rst index 465cf54ad3..59e4ec1722 100644 --- a/docs/library/cmath.rst +++ b/docs/library/cmath.rst @@ -4,6 +4,8 @@ .. module:: cmath :synopsis: mathematical functions for complex numbers +|see_cpython_module| :mod:`python:cmath`. + The ``cmath`` module provides some basic mathematical functions for working with complex numbers. |