Browse Source

py/modsys: Replace non-ASCII quote char with ASCII char.

The source code should stay 7-bit ASCII clean.

Signed-off-by: Damien George <damien@micropython.org>
pull/7934/head
Damien George 3 years ago
parent
commit
123dcdb8e5
  1. 2
      py/modsys.c

2
py/modsys.c

@ -175,7 +175,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_1(mp_sys_atexit_obj, mp_sys_atexit);
#endif
#if MICROPY_PY_SYS_SETTRACE
// settrace(tracefunc): Set the systems trace function.
// settrace(tracefunc): Set the system's trace function.
STATIC mp_obj_t mp_sys_settrace(mp_obj_t obj) {
return mp_prof_settrace(obj);
}

Loading…
Cancel
Save