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>
This commit is contained in:
Damien George 2021-11-19 17:26:04 +11:00
parent 78ab2eeda3
commit 123dcdb8e5
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}