diff options
| author | Alessandro Gatti <a.gatti@frob.it> | 2025-01-04 15:00:28 +0100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-01-15 07:46:09 +1100 |
| commit | e73cf71a246ee456aac0f4d16167e0856846db6b (patch) | |
| tree | f089418ca44e9d45b7b86bb25aef09675cea4e0c | |
| parent | 1b4c969ce0c2ed83bcf366e1b6d977df3d72a9d2 (diff) | |
tests/extmod/re_sub.py: Fix test execution on Python 3.13.
This commit fixes a test failure for `extmod/re_sub.py` where the code,
whilst being correct, would not make the test pass due to a newer
Python version than expected.
On Python 3.13, running `tests/extmod/re_sub.py` would yield a
deprecation warning about `re.sub` not providing the match count as a
keyword parameter. This warning would be embedded in the expected test
result and thus the test would always fail.
Co-authored-by: stijn <stijn@ignitron.net>
Signed-off-by: Alessandro Gatti <a.gatti@frob.it>
| -rw-r--r-- | tests/extmod/re_sub.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/extmod/re_sub.py b/tests/extmod/re_sub.py index 2c7c6c10f..ecaa66d83 100644 --- a/tests/extmod/re_sub.py +++ b/tests/extmod/re_sub.py @@ -10,6 +10,8 @@ except AttributeError: print("SKIP") raise SystemExit +import sys + def multiply(m): return str(int(m.group(0)) * 2) @@ -47,7 +49,11 @@ print(re.sub("(abc)", r"\g<1>\g<1>", "abc")) print(re.sub("a", "b", "c")) # with maximum substitution count specified -print(re.sub("a", "b", "1a2a3a", 2)) +if sys.implementation.name != "micropython": + # On CPython 3.13 and later the substitution count must be a keyword argument. + print(re.sub("a", "b", "1a2a3a", count=2)) +else: + print(re.sub("a", "b", "1a2a3a", 2)) # invalid group try: |
