summaryrefslogtreecommitdiffstatshomepage
path: root/py/objtuple.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-05 15:54:51 -0800
committerDamien George <damien.p.george@gmail.com>2014-01-05 15:54:51 -0800
commit73595feb75d36501a5b1fdea979357b2b6863fc2 (patch)
tree587493638de524c046b54852bab63459478feb77 /py/objtuple.c
parent6b0b4a0cad348813f54d1395cee5fe77ea38dad0 (diff)
parent860ffb0a4365bba62cbd692392375df9fd4a72e7 (diff)
downloadmicropython-73595feb75d36501a5b1fdea979357b2b6863fc2.tar.gz
micropython-73595feb75d36501a5b1fdea979357b2b6863fc2.zip
Merge pull request #89 from pfalcon/c99-tagged-structs
Convert many object types structs to use C99 tagged initializer syntax.
Diffstat (limited to 'py/objtuple.c')
-rw-r--r--py/objtuple.c23
1 files changed, 7 insertions, 16 deletions
diff --git a/py/objtuple.c b/py/objtuple.c
index d55259d1a6..ceca4200e4 100644
--- a/py/objtuple.c
+++ b/py/objtuple.c
@@ -99,14 +99,11 @@ static mp_obj_t tuple_getiter(mp_obj_t o_in) {
const mp_obj_type_t tuple_type = {
{ &mp_const_type },
"tuple",
- tuple_print, // print
- tuple_make_new, // make_new
- NULL, // call_n
- NULL, // unary_op
- tuple_binary_op, // binary_op
- tuple_getiter, // getiter
- NULL, // iternext
- {{NULL, NULL},}, // method list
+ .print = tuple_print,
+ .make_new = tuple_make_new,
+ .binary_op = tuple_binary_op,
+ .getiter = tuple_getiter,
+ .methods = {{NULL, NULL},},
};
// the zero-length tuple
@@ -168,14 +165,8 @@ static mp_obj_t tuple_it_iternext(mp_obj_t self_in) {
static const mp_obj_type_t tuple_it_type = {
{ &mp_const_type },
"tuple_iterator",
- NULL, // print
- NULL, // make_new
- NULL, // call_n
- NULL, // unary_op
- NULL, // binary_op
- NULL, // getiter
- tuple_it_iternext,
- {{NULL, NULL},}, // method list
+ .iternext = tuple_it_iternext,
+ .methods = {{NULL, NULL},},
};
static mp_obj_t mp_obj_new_tuple_iterator(mp_obj_tuple_t *tuple, int cur) {