diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-20 01:48:35 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-20 18:00:23 +0300 |
commit | 3b6f7b95eb487fc927a3bc4644b1941cfbe2612b (patch) | |
tree | e06661e63e4c8bd6f94494281237bc31f4d488eb /py/objcomplex.c | |
parent | 7efbd325bb5ac540b746a594a76185c211963c46 (diff) | |
download | micropython-3b6f7b95eb487fc927a3bc4644b1941cfbe2612b.tar.gz micropython-3b6f7b95eb487fc927a3bc4644b1941cfbe2612b.zip |
py: Separate MICROPY_PY_BUILTINS_COMPLEX from MICROPY_PY_BUILTINS_FLOAT.
One thing is wanting to do 1 / 2 and get something else but 0, and quite
another - doing rocket science ;-).
Diffstat (limited to 'py/objcomplex.c')
-rw-r--r-- | py/objcomplex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objcomplex.c b/py/objcomplex.c index d58b53463c..20e7c97d37 100644 --- a/py/objcomplex.c +++ b/py/objcomplex.c @@ -36,7 +36,7 @@ #include "runtime0.h" #include "runtime.h" -#if MICROPY_PY_BUILTINS_FLOAT +#if MICROPY_PY_BUILTINS_COMPLEX #include <math.h> |