summaryrefslogtreecommitdiffstatshomepage
path: root/py/objfloat.c
diff options
context:
space:
mode:
authorstijn <stinos@zoho.com>2015-05-16 10:54:19 +0200
committerDamien George <damien.p.george@gmail.com>2015-05-17 21:47:11 +0100
commit861670ba2ad6fe575de4a31c95c01070ed900391 (patch)
tree4a62df6a4e95183f472a38ee06c4b8729f2d51c1 /py/objfloat.c
parentf5dd6f7f3707b67acbd1dbfe71cad2b958d5d7be (diff)
downloadmicropython-861670ba2ad6fe575de4a31c95c01070ed900391.tar.gz
micropython-861670ba2ad6fe575de4a31c95c01070ed900391.zip
py: Implement mp_format_float for doubles and use where appropriate
This allows using (almost) the same code for printing floats everywhere, removes the dependency on sprintf and uses just snprintf and applies an msvc-specific fix for snprintf in a single place so nan/inf are now printed correctly.
Diffstat (limited to 'py/objfloat.c')
-rw-r--r--py/objfloat.c15
1 files changed, 4 insertions, 11 deletions
diff --git a/py/objfloat.c b/py/objfloat.c
index f74e12f9d4..ffb3c71964 100644
--- a/py/objfloat.c
+++ b/py/objfloat.c
@@ -37,31 +37,24 @@
#if MICROPY_PY_BUILTINS_FLOAT
#include <math.h>
-
-#if MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_FLOAT
#include "py/formatfloat.h"
-#endif
STATIC void float_print(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t kind) {
(void)kind;
mp_obj_float_t *o = o_in;
#if MICROPY_FLOAT_IMPL == MICROPY_FLOAT_IMPL_FLOAT
char buf[16];
- mp_format_float(o->value, buf, sizeof(buf), 'g', 7, '\0');
- mp_print_str(print, buf);
- if (strchr(buf, '.') == NULL && strchr(buf, 'e') == NULL && strchr(buf, 'n') == NULL) {
- // Python floats always have decimal point (unless inf or nan)
- mp_print_str(print, ".0");
- }
+ const int precision = 7;
#else
char buf[32];
- sprintf(buf, "%.16g", (double) o->value);
+ const int precision = 16;
+#endif
+ mp_format_float(o->value, buf, sizeof(buf), 'g', precision, '\0');
mp_print_str(print, buf);
if (strchr(buf, '.') == NULL && strchr(buf, 'e') == NULL && strchr(buf, 'n') == NULL) {
// Python floats always have decimal point (unless inf or nan)
mp_print_str(print, ".0");
}
-#endif
}
STATIC mp_obj_t float_make_new(mp_obj_t type_in, mp_uint_t n_args, mp_uint_t n_kw, const mp_obj_t *args) {