Merge pull request #660 from Rosuav/assert0

Replace assert(0) with a self-documenting TODO string
This commit is contained in:
Paul Sokolovsky 2014-06-05 12:11:48 +03:00
commit 1e82ef3ae8

View File

@ -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);