summaryrefslogtreecommitdiff
path: root/lib/utils
diff options
context:
space:
mode:
authorGlenn Ruben Bakke <glennbakke@gmail.com>2017-03-03 00:36:25 +0100
committerGlenn Ruben Bakke <glennbakke@gmail.com>2017-03-03 00:36:25 +0100
commit159202ad00bd73d5efb3888221d4ca7514f3e9ba (patch)
tree7663f416893cbeafa161e8ede9b7ca3d3bbe59ff /lib/utils
parent235c0edacb7274857bd1725dd7757ff18e55bf2f (diff)
lib/utils: Expose pyb_set_repl_info function public
The patch enables the possibility to disable or initialize the repl info from outside of the module. Can also be used to initialize the repl_display_debugging_info in pyexec.c if not startup file is clearing .bss segment.
Diffstat (limited to 'lib/utils')
-rw-r--r--lib/utils/pyexec.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/utils/pyexec.h b/lib/utils/pyexec.h
index 0c7567e27..d7d2a85ab 100644
--- a/lib/utils/pyexec.h
+++ b/lib/utils/pyexec.h
@@ -48,6 +48,7 @@ int pyexec_frozen_module(const char *name);
void pyexec_event_repl_init(void);
int pyexec_event_repl_process_char(int c);
extern uint8_t pyexec_repl_active;
+mp_obj_t pyb_set_repl_info(mp_obj_t o_value);
MP_DECLARE_CONST_FUN_OBJ_1(pyb_set_repl_info_obj);