summaryrefslogtreecommitdiff
path: root/py/objint.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/objint.c')
-rw-r--r--py/objint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/objint.c b/py/objint.c
index edb2ecd87..72058a090 100644
--- a/py/objint.c
+++ b/py/objint.c
@@ -380,7 +380,7 @@ STATIC mp_obj_t int_from_bytes(size_t n_args, const mp_obj_t *args) {
(void)n_args;
if (args[2] != MP_OBJ_NEW_QSTR(MP_QSTR_little)) {
- mp_raise_NotImplementError("");
+ mp_raise_NotImplementedError("");
}
// get the buffer info
@@ -405,7 +405,7 @@ STATIC mp_obj_t int_to_bytes(size_t n_args, const mp_obj_t *args) {
(void)n_args;
if (args[2] != MP_OBJ_NEW_QSTR(MP_QSTR_little)) {
- mp_raise_NotImplementError("");
+ mp_raise_NotImplementedError("");
}
mp_uint_t len = MP_OBJ_SMALL_INT_VALUE(args[1]);