Skip to content

Commit 87bb093

Browse files
committed
Merge branch 'master' of github.com:micropython/micropython
2 parents 7a5f9e9 + 1d2ba5d commit 87bb093

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

py/builtinimport.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void do_load(mp_obj_t module_obj, vstr_t *file) {
7777

7878
if (lex == NULL) {
7979
// we verified the file exists using stat, but lexer could still fail
80-
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ImportError, "ImportError: No module named '%s'", vstr_str(file)));
80+
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ImportError, "No module named '%s'", vstr_str(file)));
8181
}
8282

8383
qstr source_name = mp_lexer_source_name(lex);
@@ -197,7 +197,7 @@ mp_obj_t mp_builtin___import__(uint n_args, mp_obj_t *args) {
197197

198198
// fail if we couldn't find the file
199199
if (stat == MP_IMPORT_STAT_NO_EXIST) {
200-
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ImportError, "ImportError: No module named '%s'", qstr_str(mod_name)));
200+
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ImportError, "No module named '%s'", qstr_str(mod_name)));
201201
}
202202

203203
module_obj = mp_module_get(mod_name);

py/parsenum.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ mp_obj_t mp_parse_num_integer(const char *restrict str, uint len, int base) {
1919

2020
// check radix base
2121
if ((base != 0 && base < 2) || base > 36) {
22-
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "ValueError: int() arg 2 must be >=2 and <= 36"));
22+
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "int() arg 2 must be >= 2 and <= 36"));
2323
}
2424

2525
// skip leading space

0 commit comments

Comments
 (0)