From 3ec8b9a77c598104d5caf02e0b6e45d9f5d139dd Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Wed, 24 Sep 2025 11:17:51 +1000 Subject: 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 --- tests/micropython/heapalloc_traceback.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/micropython/heapalloc_traceback.py') diff --git a/tests/micropython/heapalloc_traceback.py b/tests/micropython/heapalloc_traceback.py index 5ded8c5f0..1743d4956 100644 --- a/tests/micropython/heapalloc_traceback.py +++ b/tests/micropython/heapalloc_traceback.py @@ -34,7 +34,7 @@ test() buf = io.StringIO() sys.print_exception(global_exc, buf) for l in buf.getvalue().split("\n"): - # uPy on pyboard prints as file, so remove filename. + # MicroPython on pyboard prints as file, so remove filename. if l.startswith(" File "): l = l.split('"') print(l[0], l[2]) -- cgit v1.2.3