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

@@ -97,8 +97,8 @@ static mp_obj_t tuple_getiter(mp_obj_t o_in) {
}
const mp_obj_type_t tuple_type = {
.base = { &mp_const_type },
.name = "tuple",
{ &mp_const_type },
"tuple",
.print = tuple_print,
.make_new = tuple_make_new,
.binary_op = tuple_binary_op,
@@ -162,8 +162,8 @@ static mp_obj_t tuple_it_iternext(mp_obj_t self_in) {
}
static const mp_obj_type_t tuple_it_type = {
.base = { &mp_const_type },
.name = "tuple_iterator",
{ &mp_const_type },
"tuple_iterator",
.iternext = tuple_it_iternext,
};