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/basics/syntaxerror.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/basics/syntaxerror.py') diff --git a/tests/basics/syntaxerror.py b/tests/basics/syntaxerror.py index c0702cb24..7b6ef9b75 100644 --- a/tests/basics/syntaxerror.py +++ b/tests/basics/syntaxerror.py @@ -86,7 +86,7 @@ test_syntax("yield") test_syntax("nonlocal a") test_syntax("await 1") -# error on uPy, warning on CPy +# error on MPy, warning on CPy #test_syntax("def f():\n a = 1\n global a") # default except must be last @@ -98,7 +98,7 @@ test_syntax("f(1=2)") # non-keyword after keyword test_syntax("f(a=1, 2)") -# doesn't error on uPy but should +# doesn't error on MPy but should #test_syntax("f(1, i for i in i)") # all elements of dict/set must be pairs or singles -- cgit v1.2.3