aboutsummaryrefslogtreecommitdiff
path: root/py/nativeglue.h
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2020-01-29 14:27:33 +1100
committerDamien George <damien.p.george@gmail.com>2020-04-05 15:02:06 +1000
commit85858e72dfdc3e941c2e620e94de05ad663138b1 (patch)
treed801c11e07380213b7e2abbb3066e2a90636369c /py/nativeglue.h
parent92c83bd16b55daf81157100243ded6d7d0e56538 (diff)
py/objexcept: Allow compression of exception message text.
The decompression of error-strings is only done if the string is accessed via printing or via er.args. Tests are added for this feature to ensure the decompression works.
Diffstat (limited to 'py/nativeglue.h')
-rw-r--r--py/nativeglue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/nativeglue.h b/py/nativeglue.h
index 9e320eff0..908ae3f65 100644
--- a/py/nativeglue.h
+++ b/py/nativeglue.h
@@ -145,7 +145,7 @@ typedef struct _mp_fun_table_t {
#if defined(__GNUC__)
NORETURN // Only certain compilers support no-return attributes in function pointer declarations
#endif
- void (*raise_msg)(const mp_obj_type_t *exc_type, const char *msg);
+ void (*raise_msg)(const mp_obj_type_t *exc_type, mp_rom_error_text_t msg);
const mp_obj_type_t *(*obj_get_type)(mp_const_obj_t o_in);
mp_obj_t (*obj_new_str)(const char *data, size_t len);
mp_obj_t (*obj_new_bytes)(const byte *data, size_t len);