A bit of stylistic cleanup (chose the wrong side during conflict resolution).

This commit is contained in:
John R. Lenton
2014-01-07 18:06:34 +00:00
parent 270112f731
commit 3391e19068
9 changed files with 24 additions and 24 deletions

View File

@@ -293,8 +293,8 @@ static const mp_method_t list_type_methods[] = {
};
const mp_obj_type_t list_type = {
.base = { &mp_const_type },
.name = "list",
{ &mp_const_type },
"list",
.print = list_print,
.make_new = list_make_new,
.binary_op = list_binary_op,
@@ -360,8 +360,8 @@ mp_obj_t list_it_iternext(mp_obj_t self_in) {
}
static const mp_obj_type_t list_it_type = {
.base = { &mp_const_type },
.name = "list_iterator",
{ &mp_const_type },
"list_iterator",
.iternext = list_it_iternext,
};