From 91fb1c9b13021e90fa2f8c2105c135fc14ac71db Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 24 Jan 2014 22:50:40 +0200 Subject: Add basic implementation of bytes type, piggybacking on str. This reuses as much str implementation as possible, from this we can make them more separate as needed. --- py/runtime.h | 1 + 1 file changed, 1 insertion(+) (limited to 'py/runtime.h') diff --git a/py/runtime.h b/py/runtime.h index d62d1f86d6..c8113f4a7d 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -2,6 +2,7 @@ int rt_is_true(mp_obj_t arg); mp_obj_t rt_load_const_dec(qstr qstr); mp_obj_t rt_load_const_str(qstr qstr); +mp_obj_t rt_load_const_bytes(qstr qstr); mp_obj_t rt_load_name(qstr qstr); mp_obj_t rt_load_global(qstr qstr); mp_obj_t rt_load_build_class(void); -- cgit v1.2.3