summaryrefslogtreecommitdiffstatshomepage
path: root/py/runtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/runtime.c')
-rw-r--r--py/runtime.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/py/runtime.c b/py/runtime.c
index 4959617eff..5fcfa6f905 100644
--- a/py/runtime.c
+++ b/py/runtime.c
@@ -104,11 +104,6 @@ void mp_deinit(void) {
#endif
}
-mp_obj_t mp_load_const_str(qstr qst) {
- DEBUG_OP_printf("load '%s'\n", qstr_str(qst));
- return MP_OBJ_NEW_QSTR(qst);
-}
-
mp_obj_t mp_load_const_bytes(qstr qst) {
DEBUG_OP_printf("load b'%s'\n", qstr_str(qst));
mp_uint_t len;