summaryrefslogtreecommitdiff
path: root/tests/basics/class_bind_self.py
diff options
context:
space:
mode:
authorAngus Gratton <angus@redyak.com.au>2025-09-24 11:17:51 +1000
committerDamien George <damien@micropython.org>2025-10-04 00:19:40 +1000
commit3ec8b9a77c598104d5caf02e0b6e45d9f5d139dd (patch)
tree11307d99ad7642b45c5ac256c812aadfb46086f1 /tests/basics/class_bind_self.py
parentfb2b638ba0837b188deb0386270973261eb41fc0 (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/basics/class_bind_self.py')
-rw-r--r--tests/basics/class_bind_self.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/class_bind_self.py b/tests/basics/class_bind_self.py
index 813f87644..8bece902c 100644
--- a/tests/basics/class_bind_self.py
+++ b/tests/basics/class_bind_self.py
@@ -52,7 +52,7 @@ print(C.f7(12))
print(C.f8(13))
print(C.f9(14))
-# not working in uPy
+# not working in MicroPython
#class C(list):
# # this acts like a method and binds self
# f1 = list.extend