py: Fix "TypeError: 'iterator' object is not iterable", doh.

This commit is contained in:
Paul Sokolovsky
2014-03-30 22:00:12 +03:00
parent f39d3b93da
commit f7eaf605c0
9 changed files with 18 additions and 0 deletions

View File

@@ -408,6 +408,7 @@ mp_obj_t list_it_iternext(mp_obj_t self_in) {
STATIC const mp_obj_type_t mp_type_list_it = {
{ &mp_type_type },
.name = MP_QSTR_iterator,
.getiter = mp_identity,
.iternext = list_it_iternext,
};