commit | 76d982ef343dcadd35355aed9c568984c850fb7b | [log] [tgz] |
---|---|---|
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | Mon Jan 13 19:19:16 2014 +0200 |
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | Wed Jan 15 02:15:38 2014 +0200 |
tree | 1ded5f199ce740d3b72c00cc1e9c2b402936632f | |
parent | 24224d7c72e1d6572ef0d24f08eb882dcac8dc50 [diff] [blame] |
type->print(): Distinguish str() and repr() variety by passing extra param.
diff --git a/py/objtuple.h b/py/objtuple.h index 9c672fe..6ff38c1 100644 --- a/py/objtuple.h +++ b/py/objtuple.h
@@ -4,4 +4,4 @@ mp_obj_t items[]; } mp_obj_tuple_t; -void tuple_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in); +void tuple_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in, mp_print_kind_t kind);