diff options
author | Angus Gratton <angus@redyak.com.au> | 2025-09-24 11:17:51 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-10-04 00:19:40 +1000 |
commit | 3ec8b9a77c598104d5caf02e0b6e45d9f5d139dd (patch) | |
tree | 11307d99ad7642b45c5ac256c812aadfb46086f1 /py/objstr.c | |
parent | fb2b638ba0837b188deb0386270973261eb41fc0 (diff) |
all: Replace legacy name with MicroPython and MPy as applicable.
With the aim of getting consistency, and removing the need to learn an
additional term, replace uses of uPy/uPython with MPy/MicroPython.
Rule of thumb was to use "MPy" abbreviation where "CPy" is used nearby, but
the full word MicroPython otherwise.
This work was funded through GitHub Sponsors.
Signed-off-by: Angus Gratton <angus@redyak.com.au>
Diffstat (limited to 'py/objstr.c')
-rw-r--r-- | py/objstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/objstr.c b/py/objstr.c index c81fc682f..df543041a 100644 --- a/py/objstr.c +++ b/py/objstr.c @@ -1304,7 +1304,7 @@ static vstr_t mp_obj_str_format_helper(const char *str, const char *top, int *ar } case '\0': // No explicit format type implies 'd' - case 'n': // I don't think we support locales in uPy so use 'd' + case 'n': // I don't think we support locales in MicroPython so use 'd' case 'd': mp_print_mp_int(&print, arg, 10, 'a', flags, fill, width, 0); continue; |