py: Remove old "run time" functions that were 1 liners.
diff --git a/py/objstr.c b/py/objstr.c
index 751f93a..2ca2248 100644
--- a/py/objstr.c
+++ b/py/objstr.c
@@ -372,7 +372,7 @@
     while (s < top && splits != 0) {
         start = s;
         while (s < top && !is_ws(*s)) s++;
-        mp_list_append(res, mp_obj_new_str(start, s - start, false));
+        mp_obj_list_append(res, mp_obj_new_str(start, s - start, false));
         if (s >= top) {
             break;
         }
@@ -383,7 +383,7 @@
     }
 
     if (s < top) {
-        mp_list_append(res, mp_obj_new_str(s, top - s, false));
+        mp_obj_list_append(res, mp_obj_new_str(s, top - s, false));
     }
 
     return res;