From 503d6110338ab2d79e6c0f8f591a0ca6397717de Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 28 May 2014 14:07:21 +0100 Subject: py: Implement long int parsing in int(...). Addresses issue #627. --- py/runtime0.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'py/runtime0.h') diff --git a/py/runtime0.h b/py/runtime0.h index 425122dbc2..542edf4a62 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -96,8 +96,8 @@ typedef enum { } mp_binary_op_t; typedef enum { - MP_F_LOAD_CONST_DEC = 0, - MP_F_LOAD_CONST_INT, + MP_F_LOAD_CONST_INT = 0, + MP_F_LOAD_CONST_DEC, MP_F_LOAD_CONST_STR, MP_F_LOAD_NAME, MP_F_LOAD_GLOBAL, -- cgit v1.2.3