Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit 3730090

Browse files
author
Paul Sokolovsky
committed
py/{modbuiltins,obj}: Use MP_PYTHON_PRINTER where possible.
1 parent f64e806 commit 3730090

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

py/modbuiltins.c

+2-7
Original file line numberDiff line numberDiff line change
@@ -430,13 +430,8 @@ MP_DEFINE_CONST_FUN_OBJ_KW(mp_builtin_print_obj, 0, mp_builtin_print);
430430

431431
STATIC mp_obj_t mp_builtin___repl_print__(mp_obj_t o) {
432432
if (o != mp_const_none) {
433-
#if MICROPY_PY_IO
434-
mp_obj_print_helper(&mp_sys_stdout_print, o, PRINT_REPR);
435-
mp_print_str(&mp_sys_stdout_print, "\n");
436-
#else
437-
mp_obj_print_helper(&mp_plat_print, o, PRINT_REPR);
438-
mp_print_str(&mp_plat_print, "\n");
439-
#endif
433+
mp_obj_print_helper(MP_PYTHON_PRINTER, o, PRINT_REPR);
434+
mp_print_str(MP_PYTHON_PRINTER, "\n");
440435
#if MICROPY_CAN_OVERRIDE_BUILTINS
441436
// Set "_" special variable
442437
mp_obj_t dest[2] = {MP_OBJ_SENTINEL, o};

py/obj.c

+1-5
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,7 @@ void mp_obj_print_helper(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t
7676
}
7777

7878
void mp_obj_print(mp_obj_t o_in, mp_print_kind_t kind) {
79-
#if MICROPY_PY_IO
80-
mp_obj_print_helper(&mp_sys_stdout_print, o_in, kind);
81-
#else
82-
mp_obj_print_helper(&mp_plat_print, o_in, kind);
83-
#endif
79+
mp_obj_print_helper(MP_PYTHON_PRINTER, o_in, kind);
8480
}
8581

8682
// helper function to print an exception with traceback

0 commit comments

Comments
 (0)