diff options
Diffstat (limited to 'tests/extmod/ure_split.py')
-rw-r--r-- | tests/extmod/ure_split.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/extmod/ure_split.py b/tests/extmod/ure_split.py index 0154f3abc2..3f7718813f 100644 --- a/tests/extmod/ure_split.py +++ b/tests/extmod/ure_split.py @@ -31,5 +31,4 @@ print(s) r = re.compile("[a-f]+") s = r.split("0a3b9") -# TODO - char classes are not yet supported by re1.5 -#print(s) +print(s) |