diff options
author | Chris Angelico <rosuav@gmail.com> | 2014-06-04 05:04:23 +1000 |
---|---|---|
committer | Chris Angelico <rosuav@gmail.com> | 2014-06-05 06:05:57 +1000 |
commit | 9ab8ab211701b259fe92d01a20c0ca45ee15b92c (patch) | |
tree | 0455791c64fdfff847f28767bc580db6fee845ed /py | |
parent | 30583f58d5363657d74829160097c58aed4f3ce1 (diff) | |
download | micropython-9ab8ab211701b259fe92d01a20c0ca45ee15b92c.tar.gz micropython-9ab8ab211701b259fe92d01a20c0ca45ee15b92c.zip |
Replace assert(0) with a self-documenting TODO string
Diffstat (limited to 'py')
-rw-r--r-- | py/objstr.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/py/objstr.c b/py/objstr.c index 440f6347e7..012d6404f7 100644 --- a/py/objstr.c +++ b/py/objstr.c @@ -513,8 +513,7 @@ STATIC mp_obj_t str_rsplit(uint n_args, const mp_obj_t *args) { 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); |