py/objstr: Make str.rsplit(None,n) raise NotImpl instead of assert(0).

modjni
Damien George 2015-09-01 15:35:31 +01:00
parent 1b693543aa
commit 22602cc37b
3 changed files with 8 additions and 1 deletions

View File

@ -578,7 +578,7 @@ STATIC mp_obj_t str_rsplit(mp_uint_t n_args, const mp_obj_t *args) {
mp_int_t idx = splits;
if (sep == mp_const_none) {
assert(!"TODO: rsplit(None,n) not implemented");
mp_not_implemented("rsplit(None,n)");
} else {
mp_uint_t sep_len;
const char *sep_str = mp_obj_str_get_data(sep, &sep_len);

View File

@ -39,3 +39,9 @@ try:
print('{a[0]}'.format(a=[1, 2]))
except NotImplementedError:
print('NotImplementedError')
# str.rsplit(None, n) not implemented
try:
'a a a'.rsplit(None, 1)
except NotImplementedError:
print('NotImplementedError')

View File

@ -4,3 +4,4 @@ True
True
TypeError, ValueError
NotImplementedError
NotImplementedError