diff options
author | ian-v <ianv888@gmail.com> | 2014-01-06 14:14:11 -0800 |
---|---|---|
committer | ian-v <ianv888@gmail.com> | 2014-01-06 14:14:11 -0800 |
commit | a5a01df81d01705b9f04264cc46fbb1bc32641b3 (patch) | |
tree | d8ff633e9934ff316fe0c6cd8940b144ff0c1d03 /py/objlist.c | |
parent | 5fd8fd2c16076f683b629b513e8865e461d4c9a8 (diff) |
Make list and str method tables static
Diffstat (limited to 'py/objlist.c')
-rw-r--r-- | py/objlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objlist.c b/py/objlist.c index 52eb48837..b642b7015 100644 --- a/py/objlist.c +++ b/py/objlist.c @@ -261,7 +261,7 @@ static MP_DEFINE_CONST_FUN_OBJ_2(list_remove_obj, list_remove); static MP_DEFINE_CONST_FUN_OBJ_1(list_reverse_obj, list_reverse); static MP_DEFINE_CONST_FUN_OBJ_2(list_sort_obj, list_sort); -const mp_method_t list_type_methods[] = { +static const mp_method_t list_type_methods[] = { { "append", &list_append_obj }, { "clear", &list_clear_obj }, { "copy", &list_copy_obj }, |