summaryrefslogtreecommitdiff
path: root/py/modstruct.c
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2018-08-07 22:08:19 -0400
committerGitHub <noreply@github.com>2018-08-07 22:08:19 -0400
commit9da79c880e387ab05a683b67feb8f3da600d937d (patch)
tree8cb5ee1feb0516c24ee270fcee5ed00d310aced8 /py/modstruct.c
parent2029c4e87e3e71ada07c8be91fe6877edf4a606b (diff)
parent933add6cd833bb6ba6682ad2b6eb478871415ff5 (diff)
Merge pull request #1097 from tannewt/i18n_only
Support internationalisation.
Diffstat (limited to 'py/modstruct.c')
-rw-r--r--py/modstruct.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/py/modstruct.c b/py/modstruct.c
index 8617a8e0d..3f1b2f8b8 100644
--- a/py/modstruct.c
+++ b/py/modstruct.c
@@ -33,6 +33,7 @@
#include "py/objtuple.h"
#include "py/binary.h"
#include "py/parsenum.h"
+#include "supervisor/shared/translate.h"
#if MICROPY_PY_STRUCT
@@ -141,7 +142,7 @@ STATIC mp_obj_t struct_unpack_from(size_t n_args, const mp_obj_t *args) {
// negative offsets are relative to the end of the buffer
offset = bufinfo.len + offset;
if (offset < 0) {
- mp_raise_ValueError("buffer too small");
+ mp_raise_ValueError(translate("buffer too small"));
}
}
p += offset;
@@ -149,7 +150,7 @@ STATIC mp_obj_t struct_unpack_from(size_t n_args, const mp_obj_t *args) {
// Check that the input buffer is big enough to unpack all the values
if (p + total_sz > end_p) {
- mp_raise_ValueError("buffer too small");
+ mp_raise_ValueError(translate("buffer too small"));
}
for (size_t i = 0; i < num_items;) {
@@ -230,7 +231,7 @@ STATIC mp_obj_t struct_pack_into(size_t n_args, const mp_obj_t *args) {
// negative offsets are relative to the end of the buffer
offset = (mp_int_t)bufinfo.len + offset;
if (offset < 0) {
- mp_raise_ValueError("buffer too small");
+ mp_raise_ValueError(translate("buffer too small"));
}
}
byte *p = (byte *)bufinfo.buf;
@@ -240,7 +241,7 @@ STATIC mp_obj_t struct_pack_into(size_t n_args, const mp_obj_t *args) {
// Check that the output buffer is big enough to hold all the values
mp_int_t sz = MP_OBJ_SMALL_INT_VALUE(struct_calcsize(args[0]));
if (p + sz > end_p) {
- mp_raise_ValueError("buffer too small");
+ mp_raise_ValueError(translate("buffer too small"));
}
struct_pack_into_internal(args[0], p, n_args - 3, &args[3]);