Replace assert(0) with a self-documenting TODO string
diff --git a/py/objstr.c b/py/objstr.c
index 440f634..012d640 100644
--- a/py/objstr.c
+++ b/py/objstr.c
@@ -513,8 +513,7 @@
     int idx = splits;
 
     if (sep == mp_const_none) {
-        // TODO
-        assert(0);
+        assert(!"TODO: rsplit(None,n) not implemented");
     } else {
         uint sep_len;
         const char *sep_str = mp_obj_str_get_data(sep, &sep_len);