diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-09 23:31:30 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-09 23:31:30 +0100 |
commit | 87bb093eb65b45870b4806febbdf17bb348c440f (patch) | |
tree | 4fb3d28d45e23867b13ffa14fb4b32481fd870b3 /py/parsenum.c | |
parent | 7a5f9e94ad787c7a1d10bba3af2d4c79bc39e54c (diff) | |
parent | 1d2ba5ddf94accde1c46bc8504990ba8ac3680e6 (diff) | |
download | micropython-87bb093eb65b45870b4806febbdf17bb348c440f.tar.gz micropython-87bb093eb65b45870b4806febbdf17bb348c440f.zip |
Merge branch 'master' of github.com:micropython/micropython
Diffstat (limited to 'py/parsenum.c')
-rw-r--r-- | py/parsenum.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |