diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-06-19 19:17:42 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-06-19 19:17:42 +0300 |
commit | b2641b53e0e9d1c13243f1e73d4255664706403a (patch) | |
tree | 7a888b32c054d570dcad9b48310a3fb53a88bb28 /docs/conf.py | |
parent | 5071ceea077dec32536315549f8d28614f7e0cfc (diff) |
docs/conf.py: Exclude cmath from modindex for wipy.
Diffstat (limited to 'docs/conf.py')
-rwxr-xr-x | docs/conf.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py index 8fa88022f..6f86ea6cd 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -335,4 +335,5 @@ for p, l in modules_port_specific.items(): # Exclude extra modules per port modindex_exclude += { 'esp8266': ['cmath', 'select'], + 'wipy': ['cmath'], }.get(micropy_port, []) |