[python] Enable builtins enumerate

This commit is contained in:
Romain Goyet
2018-06-07 17:51:40 +02:00
committed by EmilieNumworks
parent b67388a9a9
commit 8acf50b50c
2 changed files with 1 additions and 3 deletions

View File

@@ -164,6 +164,7 @@ Q(divmod)
Q(e)
Q(end)
Q(endswith)
Q(enumerate)
Q(erf)
Q(erfc)
Q(eval)

View File

@@ -47,9 +47,6 @@
// Whether to support property object
#define MICROPY_PY_BUILTINS_PROPERTY (0)
// Whether to support enumerate function(type)
#define MICROPY_PY_BUILTINS_ENUMERATE (0)
// Whether to support filter function(type)
#define MICROPY_PY_BUILTINS_FILTER (0)