Closed kmpm closed 1 year ago
From the documentation, it seems like the solution is to change for example '^\d+$'
to be r"^\d+$"
so that Python doesn't try to parse the escape characters itself.
Assuming all the escapes in the strings are there for the regex, that's not difficult to fix, I'll take care of it tomorrow after I get some sleep.
Running tests reveal some deprecation warnings on regex escape sequences. These should be reworked