File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -1324,6 +1324,16 @@ typedef double mp_float_t;
1324
1324
#define MICROPY_PY_COLLECTIONS_DEQUE (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
1325
1325
#endif
1326
1326
1327
+ // Whether "collections.deque" supports iteration
1328
+ #ifndef MICROPY_PY_COLLECTIONS_DEQUE_ITER
1329
+ #define MICROPY_PY_COLLECTIONS_DEQUE_ITER (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
1330
+ #endif
1331
+
1332
+ // Whether "collections.deque" supports subscription
1333
+ #ifndef MICROPY_PY_COLLECTIONS_DEQUE_SUBSCR
1334
+ #define MICROPY_PY_COLLECTIONS_DEQUE_SUBSCR (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
1335
+ #endif
1336
+
1327
1337
// Whether to provide "collections.OrderedDict" type
1328
1338
#ifndef MICROPY_PY_COLLECTIONS_ORDEREDDICT
1329
1339
#define MICROPY_PY_COLLECTIONS_ORDEREDDICT (MICROPY_CONFIG_ROM_LEVEL_AT_LEAST_EXTRA_FEATURES)
You can’t perform that action at this time.
0 commit comments