diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-17 17:11:03 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-17 17:11:03 +0100 |
commit | dbdfee15a1839858b4d12f352b2e34597e6e76e9 (patch) | |
tree | db3d1cae2a4b3c3bdc825a226b818d728100fe8d /py/builtin.h | |
parent | fb06bfc11ccc2506d27e3f53750771d5c737df2e (diff) |
py: Add cmath module, for complex math. Disabled by default.
Not all functions implemented. Not enabled on pyboard.
Diffstat (limited to 'py/builtin.h')
-rw-r--r-- | py/builtin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/builtin.h b/py/builtin.h index 36b9f3881..9b2b9c942 100644 --- a/py/builtin.h +++ b/py/builtin.h @@ -48,6 +48,7 @@ extern const mp_obj_module_t mp_module_array; extern const mp_obj_module_t mp_module_collections; extern const mp_obj_module_t mp_module_io; extern const mp_obj_module_t mp_module_math; +extern const mp_obj_module_t mp_module_cmath; extern const mp_obj_module_t mp_module_micropython; extern const mp_obj_module_t mp_module_struct; extern const mp_obj_module_t mp_module_sys; |