Skip to content

Commit 47e8475

Browse files
projectgusdpgeorge
authored andcommitted
py/objstr: Add a macro to define a bytes object at compile time.
This work was funded through GitHub Sponsors. Signed-off-by: Angus Gratton <[email protected]>
1 parent fff66c3 commit 47e8475

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

py/objstr.h

+2
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ const byte *str_index_to_ptr(const mp_obj_type_t *type, const byte *self_data, s
100100
mp_obj_t index, bool is_slice);
101101
const byte *find_subbytes(const byte *haystack, size_t hlen, const byte *needle, size_t nlen, int direction);
102102

103+
#define MP_DEFINE_BYTES_OBJ(obj_name, target, len) mp_obj_str_t obj_name = {{&mp_type_bytes}, 0, (len), (const byte *)(target)}
104+
103105
mp_obj_t mp_obj_bytes_hex(size_t n_args, const mp_obj_t *args, const mp_obj_type_t *type);
104106
mp_obj_t mp_obj_bytes_fromhex(mp_obj_t type_in, mp_obj_t data);
105107

0 commit comments

Comments
 (0)