summaryrefslogtreecommitdiffstatshomepage
path: root/py/objstr.c
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2022-10-07 11:06:43 +1100
committerDamien George <damien@micropython.org>2022-10-11 17:50:19 +1100
commitc44b3927b8f464e1e01c07b2431e7db251e6d8c0 (patch)
treea0c5cb7ab8ec112fffd4c06cda1576907156d426 /py/objstr.c
parent4fc543c829add6bb13b111b5e12103893bbc0706 (diff)
downloadmicropython-c44b3927b8f464e1e01c07b2431e7db251e6d8c0.tar.gz
micropython-c44b3927b8f464e1e01c07b2431e7db251e6d8c0.zip
py/objstr: Add a helper to set mp_obj_str_t data.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'py/objstr.c')
-rw-r--r--py/objstr.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/py/objstr.c b/py/objstr.c
index 55e737fffc..8c639e7354 100644
--- a/py/objstr.c
+++ b/py/objstr.c
@@ -2045,6 +2045,12 @@ mp_int_t mp_obj_str_get_buffer(mp_obj_t self_in, mp_buffer_info_t *bufinfo, mp_u
}
}
+void mp_obj_str_set_data(mp_obj_str_t *str, const byte *data, size_t len) {
+ str->data = data;
+ str->len = len;
+ str->hash = qstr_compute_hash(data, len);
+}
+
// This locals table is used for the following types: str, bytes, bytearray, array.array.
// Each type takes a different section (start to end offset) of this table.
STATIC const mp_rom_map_elem_t array_bytearray_str_bytes_locals_table[] = {