summaryrefslogtreecommitdiff
path: root/tests/extmod/re_sub.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/re_sub.py')
-rw-r--r--tests/extmod/re_sub.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extmod/re_sub.py b/tests/extmod/re_sub.py
index ecaa66d83..95ba1d70d 100644
--- a/tests/extmod/re_sub.py
+++ b/tests/extmod/re_sub.py
@@ -61,7 +61,7 @@ try:
except:
print("invalid group")
-# invalid group with very large number (to test overflow in uPy)
+# invalid group with very large number (to test overflow in MicroPython)
try:
re.sub("(a)", "b\\199999999999999999999999999999999999999", "a")
except: