summaryrefslogtreecommitdiffstatshomepage
path: root/py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-09 20:49:35 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-09 20:49:35 +0100
commit1d2ba5ddf94accde1c46bc8504990ba8ac3680e6 (patch)
tree2163de67bb1a72f127b5a8c28ee44b20e4a961e5 /py
parent038fd52faa5aee18d85278b7f8a1832464e0cf2d (diff)
parentf78cfaf8b50220325dd59fa879f74a8a355f93c3 (diff)
downloadmicropython-1d2ba5ddf94accde1c46bc8504990ba8ac3680e6.tar.gz
micropython-1d2ba5ddf94accde1c46bc8504990ba8ac3680e6.zip
Merge pull request #455 from lurch/exception-messages
Remove exception name from inside the exception message
Diffstat (limited to 'py')
-rw-r--r--py/builtinimport.c4
-rw-r--r--py/parsenum.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/py/builtinimport.c b/py/builtinimport.c
index a3ab3c9ed7..5102a9bdec 100644
--- a/py/builtinimport.c
+++ b/py/builtinimport.c
@@ -77,7 +77,7 @@ void do_load(mp_obj_t module_obj, vstr_t *file) {
if (lex == NULL) {
// we verified the file exists using stat, but lexer could still fail
- nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ImportError, "ImportError: No module named '%s'", vstr_str(file)));
+ nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ImportError, "No module named '%s'", vstr_str(file)));
}
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) {
// fail if we couldn't find the file
if (stat == MP_IMPORT_STAT_NO_EXIST) {
- nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ImportError, "ImportError: No module named '%s'", qstr_str(mod_name)));
+ nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ImportError, "No module named '%s'", qstr_str(mod_name)));
}
module_obj = mp_module_get(mod_name);
diff --git a/py/parsenum.c b/py/parsenum.c
index c7cf68dad9..64c8624109 100644
--- a/py/parsenum.c
+++ b/py/parsenum.c
@@ -19,7 +19,7 @@ mp_obj_t mp_parse_num_integer(const char *restrict str, uint len, int base) {
// check radix base
if ((base != 0 && base < 2) || base > 36) {
- nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "ValueError: int() arg 2 must be >=2 and <= 36"));
+ nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "int() arg 2 must be >= 2 and <= 36"));
}
// skip leading space