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 /tests/float/string_format2.py | |
| 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 'tests/float/string_format2.py')
| -rw-r--r-- | tests/float/string_format2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/float/string_format2.py b/tests/float/string_format2.py index 7a36f4d2f..cdea4c119 100644 --- a/tests/float/string_format2.py +++ b/tests/float/string_format2.py @@ -144,7 +144,7 @@ if full_tests: for alignment in ("", "<", ">", "=", "^"): for fill in ("", " ", "0", "@"): for sign in ("", "+", "-", " "): - # An empty precision defaults to 6, but when uPy is + # An empty precision defaults to 6, but when MicroPython is # configured to use a float, we can only use a # precision of 6 with numbers less than 10 and still # get results that compare to CPython (which uses @@ -164,7 +164,7 @@ if full_tests: for alignment in ("", "<", ">", "=", "^"): for fill in ("", " ", "0", "@"): for sign in ("", "+", "-", " "): - # An empty precision defaults to 6, but when uPy is + # An empty precision defaults to 6, but when MicroPython is # configured to use a float, we can only use a # precision of 6 with numbers less than 10 and still # get results that compare to CPython (which uses |
